* {
    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: #1a1a1a;
    background: #fafafa;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-disclosure {
    font-size: 0.85rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content-left {
    flex: 1;
    padding-left: 3rem;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtext {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #1a252f;
}

.hero-image-right {
    flex: 1;
    position: relative;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.insight-diagonal {
    background: #f5f5f5;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.diagonal-block {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.insight-content {
    flex: 1.2;
}

.insight-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.insight-visual {
    flex: 0.8;
    background: #e8e8e8;
}

.insight-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.services-asymmetric {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-header-offset {
    margin-left: 4rem;
    margin-bottom: 3rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
}

.card-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-image {
    background: #e0e0e0;
    height: 250px;
    overflow: hidden;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.select-service {
    padding: 0.8rem 1.8rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a252f;
}

.testimonial-overlap {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 3rem auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.testimonial-block {
    flex: 1;
    padding: 2rem;
}

.testimonial-block blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-style: normal;
    color: #666;
    font-size: 1rem;
}

.testimonial-visual {
    flex: 0.8;
    background: #e8e8e8;
}

.testimonial-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.cta-stacked {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
    color: #fff;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: #fff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
}

.cta-primary:hover {
    background: #ecf0f1;
}

.approach-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.approach-image {
    flex: 0.9;
    background: #e0e0e0;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.footer-minimal {
    background: #1a1a1a;
    color: #bbb;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.disclaimer-footer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #888;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.selected-service-display {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-content form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.modal-content form input,
.modal-content form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.modal-content form input:focus,
.modal-content form textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #1a252f;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #555;
    color: #fff;
}

.cookie-btn.reject:hover {
    background: #444;
}

.about-header-asymmetric {
    padding: 5rem 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
    max-width: 900px;
}

.story-offset {
    display: flex;
    gap: 4rem;
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.story-content {
    flex: 1.2;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.story-image {
    flex: 0.8;
    background: #e0e0e0;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.values-irregular {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.values-irregular h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    flex: 1 1 calc(50% - 1rem);
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.value-block p {
    color: #555;
    line-height: 1.6;
}

.team-visual {
    position: relative;
    margin: 3rem 0;
}

.team-image-large {
    width: 100%;
    background: #e0e0e0;
}

.team-image-large img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.team-overlay-text {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: rgba(44, 62, 80, 0.9);
    color: #fff;
    padding: 2rem;
    max-width: 600px;
    border-radius: 6px;
}

.team-overlay-text p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-cta {
    text-align: center;
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.about-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.services-header {
    padding: 5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-intro {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1300px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

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

.service-detail-visual {
    flex: 0.8;
    background: #e0e0e0;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1.5rem 0;
}

.services-cta {
    text-align: center;
    padding: 5rem 2rem;
    background: #f5f5f5;
}

.services-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-header {
    padding: 5rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

.contact-content {
    display: flex;
    gap: 4rem;
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.contact-info-offset {
    flex: 1;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #e0e0e0;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.thanks-container {
    display: flex;
    gap: 4rem;
    padding: 5rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    min-height: 60vh;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #27ae60;
}

.thanks-lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-note {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    font-weight: 600;
}

.thanks-visual {
    flex: 0.8;
    background: #e0e0e0;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.6rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
    color: #888;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content-left {
        padding-left: 0;
    }

    .hero-content-left h1 {
        font-size: 2rem;
    }

    .diagonal-block,
    .approach-split,
    .story-offset,
    .testimonial-overlap,
    .contact-content,
    .service-detail,
    .thanks-container {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1rem;
    }

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

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

    .team-overlay-text {
        position: static;
        margin: 1rem;
    }
}