* {
    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: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    margin: 20px 40px;
    border-radius: 8px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    margin-top: 120px;
    position: relative;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 80px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.hero-content-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #34495e;
}

.hero-image-overlay {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.intro-offset {
    display: flex;
    margin: 100px 60px 80px;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    flex: 0 0 38%;
}

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

.intro-narrow p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.intro-wide-image {
    flex: 1;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
}

.intro-wide-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-asymmetric {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.section-header-offset {
    margin-bottom: 60px;
    margin-left: 15%;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    max-width: 600px;
}

.services-irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-card-large {
    flex: 0 0 calc(50% - 15px);
}

.service-card-medium {
    flex: 0 0 calc(33.333% - 20px);
}

.service-card-small {
    flex: 0 0 calc(25% - 23px);
}

.service-image {
    width: 100%;
    height: 220px;
    margin-bottom: 25px;
    border-radius: 6px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

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

.service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #2980b9;
}

.approach-split {
    display: flex;
    margin: 120px 0;
}

.approach-text {
    flex: 0 0 52%;
    padding: 80px 100px 80px 60px;
    background-color: #ecf0f1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #34495e;
    line-height: 1.7;
}

.citation {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.cta-text {
    display: inline-block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
}

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

.approach-visual {
    flex: 1;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials-stacked {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-stacked h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #3498db;
}

.testimonial-item blockquote {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-item cite {
    font-size: 16px;
    color: #ecf0f1;
    font-style: normal;
}

.form-section-offset {
    padding: 100px 60px;
    margin-left: 10%;
    max-width: 700px;
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #34495e;
}

.selected-service-box {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 80px 60px 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-references {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-references ol {
    margin-left: 20px;
}

.footer-references li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 40px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.page-header-asymmetric {
    padding: 180px 60px 80px 100px;
    background-color: #ecf0f1;
    margin-bottom: 80px;
}

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

.page-header-asymmetric p {
    font-size: 20px;
    color: #34495e;
}

.about-story {
    display: flex;
    gap: 80px;
    padding: 0 60px 100px;
    align-items: center;
}

.story-text-offset {
    flex: 0 0 48%;
}

.story-text-offset h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

.story-text-offset p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #34495e;
    line-height: 1.7;
}

.story-image-float {
    flex: 1;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-float img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-irregular {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.values-irregular h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-large {
    flex: 0 0 calc(55% - 15px);
}

.value-medium {
    flex: 0 0 calc(50% - 15px);
}

.value-small {
    flex: 0 0 calc(45% - 15px);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e50;
}

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

.team-section {
    padding: 100px 60px;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #34495e;
    line-height: 1.7;
}

.team-image-wide {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.team-image-wide img {
    width: 100%;
    height: 100%;
    display: block;
}

.mission-offset {
    padding: 100px 60px 100px 150px;
    background-color: #ecf0f1;
}

.mission-content {
    max-width: 700px;
}

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

.mission-content p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #34495e;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 60px;
}

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

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

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

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #34495e;
    line-height: 1.7;
}

.service-features {
    margin-left: 25px;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #34495e;
    line-height: 1.6;
}

.service-pricing-box {
    background-color: #e8f5e9;
    padding: 20px 25px;
    border-radius: 6px;
    display: inline-block;
}

.price-label {
    font-size: 15px;
    color: #34495e;
    margin-right: 10px;
}

.price-amount {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 0 0 45%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-section-offset {
    padding: 100px 60px;
    background-color: #3498db;
    text-align: center;
    margin: 80px 0 0 120px;
    border-radius: 8px;
}

.cta-section-offset h2 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section-offset p {
    font-size: 19px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #ecf0f1;
}

.contact-content {
    display: flex;
    gap: 80px;
    padding: 0 60px 100px;
    align-items: flex-start;
}

.contact-info-offset {
    flex: 0 0 45%;
}

.contact-info-offset h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

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

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

.contact-visual {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-additional {
    padding: 80px 60px 100px 150px;
    background-color: #f8f9fa;
}

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

.contact-additional p {
    font-size: 17px;
    margin-bottom: 22px;
    color: #34495e;
    line-height: 1.7;
    max-width: 800px;
}

.contact-additional a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.contact-additional a:hover {
    text-decoration: underline;
}

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

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

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

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

.thanks-section {
    display: flex;
    gap: 80px;
    padding: 180px 60px 100px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #34495e;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #27ae60;
}

.service-confirmation p {
    margin: 0;
    font-size: 17px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

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

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

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

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

.thanks-visual {
    flex: 0 0 40%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .nav-floating {
        margin: 15px 20px;
        padding: 15px 25px;
    }

    .hero-asymmetric {
        flex-direction: column;
        margin-top: 100px;
    }

    .hero-content-offset {
        flex: 1;
        padding: 60px 30px;
    }

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

    .hero-image-overlay {
        height: 400px;
    }

    .intro-offset,
    .about-story,
    .approach-split,
    .contact-content,
    .thanks-section {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .services-irregular-grid {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .service-detail-item {
        flex-direction: column;
        gap: 40px;
    }

    .service-reverse {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}