:root {
    --primary-color: #00D4AA;
    --secondary-color: #FF6B9D;
    --accent-color: #FFD93D;
    --tertiary-color: #6C5CE7;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --bg-light: #F8F9FA;
    --bg-dark: #2D3436;
    --white: #FFFFFF;
    --gradient-1: linear-gradient(135deg, #00D4AA 0%, #6C5CE7 100%);
    --gradient-2: linear-gradient(135deg, #FF6B9D 0%, #FFD93D 100%);
    --gradient-3: linear-gradient(135deg, #6C5CE7 0%, #00D4AA 100%);
    --gradient-4: linear-gradient(45deg, #00D4AA, #FF6B9D, #FFD93D, #6C5CE7);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.navbar-brand .logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0.1;
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2310b981" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--gradient-2);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-outline-light {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: white;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-1 i {
    background: var(--gradient-2);
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-2 i {
    background: var(--gradient-3);
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.card-3 i {
    background: var(--gradient-4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: var(--gradient-2);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:nth-child(2) .service-icon {
    background: var(--gradient-3);
}

.service-card:nth-child(3) .service-icon {
    background: var(--gradient-4);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Process Steps */
.how-it-works {
    background: var(--bg-light);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step:nth-child(2) .step-icon {
    background: var(--gradient-3);
}

.process-step:nth-child(3) .step-icon {
    background: var(--gradient-4);
}

.process-step:nth-child(4) .step-icon {
    background: var(--gradient-2);
}

.step-icon:hover {
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-info h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    color: var(--text-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.footer-brand .logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    width: 20px;
}

.footer-links h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-divider {
    border-color: #374151;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: #9ca3af;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: static;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .hero-visual {
        height: auto;
        margin-top: 2rem;
    }
    
    .service-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

    .page-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 120px 0 80px;
        color: white;
        text-align: center;
    }

    .page-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .page-subtitle {
        font-size: 1.25rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-detail {
        padding: 80px 0;
    }

    .service-badge {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1.5rem;
    }

    .service-badge i {
        margin-right: 8px;
    }

    .service-features-detailed {
        margin-top: 2rem;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .feature-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .feature-content h4 {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .feature-content p {
        color: var(--text-light);
        margin: 0;
    }

    .service-visual {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .visual-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .visual-card i {
        font-size: 2.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .visual-card h5 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .visual-card p {
        color: var(--text-light);
        margin: 0;
    }

    .service-process {
        background: var(--bg-light);
    }

    .process-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        position: relative;
    }

    .process-number {
        position: absolute;
        top: -15px;
        left: 2rem;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .process-content {
        margin-top: 1rem;
    }

    .process-content h4 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .process-content ul {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
    }

    .process-content li {
        padding: 0.25rem 0;
        color: var(--text-light);
        position: relative;
        padding-left: 1.5rem;
    }

    .process-content li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
    }

    .pricing-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        position: relative;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
    }

    .pricing-card.featured {
        border: 3px solid var(--primary-color);
        transform: scale(1.05);
    }

    .featured-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .pricing-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 2rem;
    }

    .pricing-header h3 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .price {
        margin-bottom: 1.5rem;
    }

    .currency {
        font-size: 1.5rem;
        color: var(--text-light);
        vertical-align: top;
    }

    .amount {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .period {
        display: block;
        color: var(--text-light);
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .pricing-features li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
    }

    .pricing-features li:last-child {
        border-bottom: none;
    }

    .pricing-features i {
        color: var(--primary-color);
        margin-right: 0.75rem;
        width: 16px;
    }

    .qualification-item {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .qualification-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
    }

    .qualification-item h4 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .benefit-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .benefit-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
        font-size: 1.5rem;
    }

    .benefit-content h4 {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .benefit-content p {
        color: var(--text-light);
        margin: 0;
    }

    .stats-card {
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-item {
        text-align: center;
    }

    .stat-item h3 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

    .stat-item p {
        color: var(--text-light);
        margin: 0;
        font-size: 0.9rem;
    }

    .accordion-item {
        border: none;
        margin-bottom: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .accordion-button {
        background: white;
        border: none;
        padding: 1.5rem;
        font-weight: 600;
        color: var(--text-dark);
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
    }

    .accordion-body {
        padding: 1.5rem;
        background: white;
        color: var(--text-light);
    }

    .company-stats {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
    }

    .mission-card, .vision-card {
        background: white;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
    }

    .mission-icon, .vision-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .value-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .value-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
    }

    .approach-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        position: relative;
    }

    .approach-number {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
    }

    .advantage-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .advantage-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
        font-size: 1.5rem;
    }

    .advantage-content h4 {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .advantage-content p {
        color: var(--text-light);
        margin: 0;
    }

    .industry-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: transform 0.3s ease;
    }

    .industry-card:hover {
        transform: translateY(-5px);
    }

    .industry-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
    }

    .contact-form-card {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .form-header h2 {
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .form-header p {
        color: var(--text-light);
    }

    .contact-form .form-label {
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.75rem;
        transition: border-color 0.3s ease;
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    }

    .form-check-group {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        margin-top: 0.5rem;
    }

    .form-check {
        padding: 1rem;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .thank-you-message {
        text-align: center;
        padding: 3rem;
    }

    .success-icon {
        font-size: 4rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

    .thank-you-message h3 {
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

    .thank-you-message p {
        color: var(--text-light);
        margin-bottom: 1rem;
    }

    .contact-info-card {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .contact-icon {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
    }

    .contact-info-card h4 {
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .contact-info-card p {
        color: var(--text-light);
        margin-bottom: 1rem;
    }

    .contact-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .contact-link:hover {
        color: var(--secondary-color);
    }

    .legal-content {
        background: white;
    }

    .legal-document {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .legal-document h2 {
        color: var(--text-dark);
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .legal-document h2:first-child {
        margin-top: 0;
    }

    .legal-document h3 {
        color: var(--text-dark);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-size: 1.25rem;
    }

    .legal-document p {
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .legal-document ul {
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 1rem;
        padding-left: 1.5rem;
    }

    .legal-document li {
        margin-bottom: 0.5rem;
    }

    .contact-details {
        background: rgba(76, 175, 80, 0.1);
        padding: 1.5rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
        margin-top: 1rem;
    }

    .contact-details p {
        margin: 0;
        color: var(--text-dark);
    }

    @media (max-width: 768px) {
        .page-title {
            font-size: 2rem;
        }

        .page-subtitle {
            font-size: 1.1rem;
        }

        .company-stats {
            flex-direction: column;
            gap: 1rem;
        }

        .stats-card {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .form-check-group {
            grid-template-columns: 1fr;
        }

        .contact-form-card {
            padding: 2rem;
        }

        .legal-document {
            padding: 2rem;
        }
    }
}
