:root {
    --primary-red: #dc3545;
    --dark-red: #c82333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-dark: #212529;
    --text-light: #6c757d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-white {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-gray {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-text {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: bold;
    color: var(--text-dark);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}

.footer {
    background-color: #212529;
    color: white;
    padding: 60px 0 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-form .form-control {
    border: 2px solid var(--medium-gray);
    padding: 12px;
    border-radius: 4px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-red);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #212529;
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner a {
    color: var(--primary-red);
    text-decoration: underline;
}

.cookie-banner.hidden {
    display: none;
}

.thank-you-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-actions {
    margin-top: 40px;
}

.next-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.legal-header {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}

.legal-content {
    padding: 60px 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.legal-section h3 {
    color: var(--text-dark);
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.legal-section ul {
    margin-bottom: 20px;
}

.legal-section p {
    margin-bottom: 15px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    padding-left: 30px;
    position: relative;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.25rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.25rem;
}

.expectation-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .section-white, .section-gray {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 50px 0 40px;
    }
    
    .thank-you-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .thank-you-actions .mr-3 {
        margin-right: 0 !important;
    }
}
