* {
    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: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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 1 300px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.nav-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-disclosure {
    flex: 1 1 auto;
    text-align: center;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: #f8f9fa;
    padding: 4px 12px;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #2c3e50;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.hero-visual {
    flex: 1 1 50%;
    background-color: #34495e;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
}

.intro-visual {
    flex: 1 1 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    background-color: #ffffff;
    padding: 80px 24px;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.service-card {
    display: flex;
    gap: 48px;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual {
    flex: 1 1 50%;
    background-color: #ecf0f1;
    min-height: 350px;
}

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

.service-info {
    flex: 1 1 50%;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #34495e;
}

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

.btn-select-service {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
}

.value-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.value-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.value-visual {
    flex: 1 1 50%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.link-inline {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cta-form-section {
    background-color: #ecf0f1;
    padding: 80px 24px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
}

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

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

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

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

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero {
    background-color: #2c3e50;
    padding: 80px 24px;
    text-align: center;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
}

.about-content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.about-visual {
    flex: 1 1 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.methodology-section {
    background-color: #f8f9fa;
    padding: 80px 24px;
}

.methodology-header {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.methodology-header h2 {
    font-size: 42px;
    color: #2c3e50;
}

.methodology-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.method-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.method-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.method-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
}

.values-visual {
    flex: 1 1 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.values-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.impact-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 24px;
}

.impact-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.impact-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.impact-list {
    list-style: none;
    margin: 32px 0;
}

.impact-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    color: #34495e;
}

.impact-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.services-detailed {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-detail-visual {
    flex: 1 1 45%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-detail-content {
    flex: 1 1 55%;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.service-details-meta {
    margin: 32px 0;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-duration,
.service-format {
    font-size: 15px;
    margin-bottom: 8px;
    color: #34495e;
}

.service-price-large {
    font-size: 38px;
    font-weight: 700;
    color: #3498db;
    margin-top: 16px;
}

.cta-services {
    background-color: #2c3e50;
    padding: 80px 24px;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-services-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.contact-info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-details {
    flex: 1 1 50%;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
}

.contact-visual {
    flex: 1 1 50%;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    min-height: 450px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-info {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 24px;
}

.info-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.info-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-hero {
    background-color: #ecf0f1;
    padding: 100px 24px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 32px;
}

.service-confirmation {
    font-size: 18px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    border: 2px solid #2c3e50;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.next-steps {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.next-steps-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.step-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

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

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content,
    .hero-visual {
        flex: 1 1 100%;
    }

    .intro-split,
    .about-split,
    .value-split,
    .values-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card,
    .service-detail-card {
        flex-direction: column;
    }

    .service-visual,
    .service-detail-visual {
        min-height: 300px;
    }

    .methodology-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

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

    .section-header-center h2,
    .methodology-header h2 {
        font-size: 32px;
    }

    .intro-content h2,
    .about-content h2,
    .value-content h2,
    .values-content h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .form-container {
        padding: 40px 24px;
    }

    .steps-grid {
        flex-direction: column;
    }

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