/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookie-content h3 {
    color: #1e3a8a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cookie-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #1e3a8a;
    color: white;
}

.cookie-btn.accept:hover {
    background: #1e40af;
}

.cookie-btn.refuse {
    background: white;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.cookie-btn.refuse:hover {
    background: #f8fafc;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 1.1rem;
}

.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #1e3a8a;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #f1f3ff;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.hero-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #64748b;
    line-height: 1.7;
}

/* Hero Form */
.hero-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-form input {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.hero-form input:focus {
    outline: none;
    border-color: #1e3a8a;
    background: white;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.hero-form input::placeholder {
    color: #94a3b8;
}

.form-submit-btn {
    background: #1e3a8a;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

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

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

.about-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.highlight {
    background: #1e3a8a;
    color: white;
    padding: 25px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: #fef7f0;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.solution-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-card h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.solution-card p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0 1.5rem 2rem;
    font-size: 0.95rem;
}

/* Experts Section */
.experts {
    padding: 100px 0;
    background: #fef7f0;
}

.experts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.experts-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.experts-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.expert-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expert-item.reverse {
    grid-template-columns: 1fr 2fr;
}

.expert-item.reverse .expert-info {
    order: 2;
}

.expert-item.reverse .expert-photo {
    order: 1;
}

.expert-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.expert-info h3 {
    font-size: 1.3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.expert-info p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

.experts-cta {
    background: #1e3a8a;
    color: white;
    padding: 35px 40px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

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

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial cite {
    font-weight: 600;
    color: #1e3a8a;
    font-style: normal;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fef7f0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 4rem;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #e0f2fe;
    padding: 20px;
    border-radius: 10px;
    font-size: 1rem;
    color: #1e3a8a;
}

.contact-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expert-item,
    .expert-item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .expert-item.reverse .expert-info,
    .expert-item.reverse .expert-photo {
        order: initial;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1rem;
    }
    
    .about, .solutions, .experts, .testimonials, .contact {
        padding: 60px 0;
    }
    
    .about-text h2, .solutions h2, .experts h2, .testimonials h2, .contact h2 {
        font-size: 2rem;
    }
    
    .solution-card {
        margin: 0 10px;
    }
    
    .expert-item {
        padding: 2rem 1.5rem;
    }
    
    .experts-cta {
        padding: 25px 20px;
        font-size: 1rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 15px;
        font-size: 0.9rem;
    }
}
.nav-toggle{
    display: none;
}