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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2b6cb0;
}

.ad-label {
    font-size: 11px;
    color: #718096;
    padding: 4px 8px;
    background-color: #edf2f7;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.85), rgba(44, 82, 130, 0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
}

.intro-section {
    background-color: #f7fafc;
    padding: 80px 40px;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 30px;
    line-height: 1.3;
}

.section-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.insight-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.insight-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.insight-card.reverse {
    flex-direction: row-reverse;
}

.insight-image {
    flex: 1;
    min-width: 400px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}

.insight-text p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.services-preview {
    background-color: #edf2f7;
    padding: 100px 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #cbd5e0;
}

.service-card h3 {
    font-size: 26px;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.service-select {
    padding: 12px 30px;
    background-color: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #2c5282;
}

.trust-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 50px;
    text-align: center;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial {
    padding: 30px;
    background-color: #f7fafc;
    border-left: 4px solid #2b6cb0;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    color: #2d3748;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.form-section {
    padding: 100px 40px;
    background-color: #2c5282;
    color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

.btn-submit {
    padding: 14px 40px;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #38a169;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f7fafc;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0aec0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .insight-card,
    .insight-card.reverse {
        flex-direction: column;
    }

    .insight-image {
        min-width: 100%;
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
    }
}

.contact-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    color: #4a5568;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-card {
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-info-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 28px;
    color: #2d3748;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-page {
    padding: 100px 40px;
    background-color: #f7fafc;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 42px;
    color: #48bb78;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.thanks-container .btn-home:hover {
    background-color: #2c5282;
}

.about-page {
    padding: 80px 40px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
    background-color: #2c5282;
    padding: 80px 40px;
    color: #ffffff;
}

.about-header h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.about-header p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-image-section {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-image {
    flex: 1;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #edf2f7;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.services-page {
    padding: 80px 40px;
    background-color: #f7fafc;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h1 {
    font-size: 44px;
    color: #1a202c;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    color: #4a5568;
}

.services-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-item h2 {
    font-size: 30px;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
}

.service-cta {
    padding: 12px 30px;
    background-color: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #2c5282;
}