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

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-centered {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-offset {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 25px 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    font-size: 14px;
}

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

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

.btn-accept {
    background: #fff;
    color: #2c2c2c;
}

.btn-accept:hover {
    background: #e0e0e0;
}

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

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

.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand-mark {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #666;
}

.ad-notice {
    font-size: 11px;
    color: #999;
    border-left: 1px solid #e5e5e5;
    padding-left: 30px;
}

.hero-minimal {
    background: #fff;
    padding: 120px 20px 100px;
    text-align: center;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.intro-philosophy {
    padding: 100px 20px;
    background: #f5f5f5;
}

.philosophy-block {
    text-align: center;
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: #333;
    font-weight: 300;
}

.visual-narrative {
    padding: 120px 20px;
    background: #fff;
}

.offset-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.narrative-image {
    flex: 1;
}

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

.narrative-text {
    flex: 1;
}

.narrative-text h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.narrative-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-gateway {
    padding: 100px 20px;
    background: #fafafa;
}

.section-title-centered {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
}

.service-grid-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item-large {
    background: #fff;
    padding: 50px;
    border: 1px solid #e5e5e5;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.price-tag {
    font-size: 24px;
    font-weight: 300;
    color: #1a1a1a;
}

.service-item-large p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-service {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-service:hover {
    background: #333;
}

.insight-depth {
    padding: 100px 20px;
    background: #fff;
}

.insight-depth h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
}

.insight-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-inline {
    background: #f9f9f9;
    padding: 40px;
    margin: 50px 0;
    border-left: 3px solid #1a1a1a;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: #333;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 14px;
    color: #777;
}

.trust-layer {
    padding: 100px 20px;
    background: #f5f5f5;
}

.container-offset {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-visual {
    flex: 1;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.trust-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.8;
}

.principle-list {
    list-style: none;
}

.principle-list li {
    font-size: 16px;
    color: #555;
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
}

.principle-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.form-section {
    padding: 100px 20px;
    background: #fff;
}

.form-section h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.main-form {
    background: #fafafa;
    padding: 50px;
    border: 1px solid #e5e5e5;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
}

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

.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #333;
}

.final-reflection {
    padding: 100px 20px;
    background: #f5f5f5;
}

.reflection-content {
    text-align: center;
}

.closing-thought {
    font-size: 22px;
    line-height: 1.7;
    color: #333;
    font-weight: 300;
}

.main-footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-brand p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 3px solid #fff;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.contact-page-hero {
    background: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.contact-info-section {
    padding: 60px 20px;
    background: #fafafa;
}

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

.contact-item {
    background: #fff;
    padding: 35px;
    border: 1px solid #e5e5e5;
}

.contact-item h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.services-page-hero {
    background: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.services-page-hero p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 20px;
    background: #fafafa;
}

.about-hero {
    background: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.about-content-section {
    padding: 80px 20px;
    background: #fafafa;
}

.about-content-section h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

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

.legal-page {
    padding: 80px 20px;
    background: #fff;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -1px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #fafafa;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

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

.thanks-content .service-selected {
    font-weight: 500;
    color: #1a1a1a;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #333;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .lead-text {
        font-size: 19px;
    }

    .offset-grid,
    .container-offset {
        flex-direction: column;
    }

    .narrative-text h2,
    .trust-text h2 {
        font-size: 32px;
    }

    .section-title-centered {
        font-size: 36px;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }

    .footer-main,
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-item-large {
        padding: 30px;
    }

    .main-form {
        padding: 30px;
    }
}