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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fff;
}

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

.content-wrapper.narrow {
    max-width: 800px;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #3498db;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #fff;
}

section {
    padding: 80px 0;
}

.intro-section h2,
.insight-section h2,
.benefits-section h2,
.process-section h2,
.services-preview-section h2,
.form-section h2,
.trust-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.insight-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image,
.insight-text {
    flex: 1;
}

.insight-image img,
.service-image img,
.about-image img,
.process-image img,
.contact-image img,
.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-text h2 {
    margin-bottom: 20px;
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.benefits-stacked {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit-block {
    padding: 50px;
}

.benefit-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 18px;
}

.process-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.process-text,
.process-image {
    flex: 1;
}

.process-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
}

.section-intro {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    margin: 0 20px 15px;
    font-size: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 0 20px 20px;
}

.form-section {
    background-color: #ecf0f1;
}

.consultation-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dfe6e9;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding-top: 60px;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-cookie.accept:hover {
    background-color: #229954;
}

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

.btn-cookie.reject:hover {
    background-color: #fff;
    color: #2c3e50;
}

.page-header {
    padding: 60px 0;
    background-color: #ecf0f1;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text,
.about-image {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 15px;
}

.principle-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #3498db;
}

.principle-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.principle-block p {
    font-size: 18px;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.approach-item {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-item p {
    font-size: 16px;
}

.cta-about {
    text-align: center;
    padding: 60px 0;
    background-color: #ecf0f1;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-content,
.service-detail-image {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.service-includes {
    margin-top: 25px;
    padding-left: 20px;
}

.service-includes li {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
}

.service-cta-section {
    background-color: #ecf0f1;
    text-align: center;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info,
.contact-image {
    flex: 1;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-info-section {
    text-align: center;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-info-section p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-cta {
    text-align: center;
    padding: 60px 0;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 18px;
    margin-bottom: 15px;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    padding-left: 20px;
}

.thanks-next-steps ul li {
    font-size: 18px;
    margin-bottom: 12px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0 15px 30px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

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

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

    .insight-grid,
    .process-layout,
    .about-layout,
    .contact-layout,
    .service-detail {
        flex-direction: column;
    }

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .approach-item {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}