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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A6CF7;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4A6CF7;
}

/* Hero Section - Exact match */
.hero {
    background: #4A6CF7;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
}

.cta-button {
    background: #00D884;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 216, 132, 0.3);
}

/* Hero Visual - Exact recreation */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.chart-illustration {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-bars-container {
    position: relative;
    display: flex;
    align-items: end;
    gap: 20px;
    margin-right: 60px;
}

.bar {
    background: #00D884;
    border-radius: 8px;
    width: 40px;
    position: relative;
}

.bar:nth-child(1) { 
    height: 80px; 
}
.bar:nth-child(2) { 
    height: 120px; 
}
.bar:nth-child(3) { 
    height: 160px; 
}

/* Dotted lines */
.chart-lines {
    position: absolute;
    top: 0;
    left: -50px;
    right: -50px;
    height: 100%;
}

.line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.6);
}

.line:nth-child(1) { top: 25%; }
.line:nth-child(2) { top: 50%; }
.line:nth-child(3) { top: 75%; }

.line-dots {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    left: 0;
    top: -3px;
}

/* Person illustration */
.person-figure {
    position: absolute;
    right: -20px;
    bottom: 0px;
    width: 120px;
    height: 200px;
}

.person-head {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
}

.person-body {
    width: 80px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 40px 40px 0 0;
    margin: 0 auto;
    position: relative;
}

.person-legs {
    width: 60px;
    height: 60px;
    background: #333;
    margin: 0 auto;
    border-radius: 0 0 30px 30px;
}

.person-paper {
    position: absolute;
    right: -15px;
    top: 30px;
    width: 20px;
    height: 25px;
    background: white;
    border-radius: 2px;
}

/* Documents at base */
.chart-documents {
    position: absolute;
    bottom: -10px;
    left: -20px;
    right: 100px;
    display: flex;
    gap: 10px;
}

.document {
    width: 30px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    transform: rotate(-15deg);
}

.document:nth-child(2) {
    transform: rotate(10deg);
}

.document:nth-child(3) {
    transform: rotate(-5deg);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-header h2 {
    font-size: 2.8rem;
    color: #4A6CF7;
    font-weight: 700;
    margin-bottom: 2rem;
}

.about-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.about-text-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.about-text h3 {
    color: #4A6CF7;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-image {
    background: url('./assets/2.png') center/cover;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header h2 {
    font-size: 2.8rem;
    color: #4A6CF7;
    font-weight: 700;
    margin-bottom: 2rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.2);
}

.service-card:nth-child(1) .service-icon {
    color: #4A6CF7;
}

.service-card:nth-child(2) .service-icon {
    color: #00D884;
}

.service-card:nth-child(3) .service-icon {
    color: #4A6CF7;
}

.service-card h3 {
    color: #4A6CF7;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #4A6CF7;
    font-weight: 700;
    margin-bottom: 2rem;
}

.testimonials-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 1px solid #e9ecef;
}

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

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ddd;
}

.author-info h4 {
    color: #4A6CF7;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
}

/* Contact Form */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #4A6CF7;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4A6CF7;
}

.submit-btn {
    background: #4A6CF7;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #3B5BDB;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #4A6CF7;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-content p {
    margin-bottom: 3rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 1rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cookie-popup p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
}

.accept-btn {
    background: #4A6CF7;
    color: white;
}

.decline-btn {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #4A6CF7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.show {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .hero, .about, .services, .testimonials, .contact {
        padding: 80px 0;
    }

    .contact-form {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .about, .services, .testimonials, .contact {
        padding: 60px 0;
    }

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

    .services-header h2,
    .about-header h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.2rem;
    }
}




/* Thank You Page Styles - Add to style.css */

.thank-you-section {
    padding: 120px 0 80px;
    margin-top: 70px;
    background: white;
    min-height: 60vh;
}

.thank-you-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.thank-you-content h1 {
    font-size: 3.5rem;
    color: #4A6CF7;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.thank-you-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: none;
}

.thank-you-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.thank-you-content li {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    list-style: disc;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 0 20px;
    }
    
    .thank-you-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .thank-you-section {
        padding: 100px 0 60px;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }
}