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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand {
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    border-left: 1px solid #ddd;
    padding-left: 20px;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 120px 20px;
    background: #fff;
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-intro h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
    color: #1a1a1a;
}

.story-intro p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 8px;
    object-fit: cover;
}

.insight-reveal {
    padding: 100px 20px;
    background: #f5f5f5;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.split-image {
    flex: 1;
    background-color: #e8e8e8;
}

.content-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.trust-block {
    padding: 120px 20px;
    background: #fff;
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-block h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
}

.trust-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.trust-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.7;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #2a2a2a;
    color: #fff;
}

.testimonials-inline h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 3px solid #c9a961;
}

.testimonial-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #c9a961;
}

.benefits-visual {
    padding: 100px 20px;
    background: #fff;
}

.benefits-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-layout h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 70px;
    text-align: center;
    color: #1a1a1a;
}

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

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

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefit-text p {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.8;
}

.benefit-img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.services-pricing {
    padding: 120px 20px;
    background: #f9f9f9;
}

.services-pricing h2 {
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #3a3a3a;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    color: #3a3a3a;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 600;
    color: #c9a961;
    margin-bottom: 25px;
}

.select-service {
    width: 100%;
    padding: 15px;
    background: #2a2a2a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #c9a961;
}

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

.form-section h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.form-section > .content-narrow > p {
    text-align: center;
    font-size: 1.1rem;
    color: #3a3a3a;
    margin-bottom: 50px;
}

.selected-service-display {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #1a1a1a;
    text-align: center;
    border-left: 4px solid #c9a961;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #2a2a2a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #c9a961;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 500;
}

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

.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.references h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #c9a961;
}

.references p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.8;
}

.references a {
    color: #c9a961;
    text-decoration: none;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid #333;
}

.disclaimer p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 25px 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ad-notice {
        border-left: none;
        border-top: 1px solid #ddd;
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
    }

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
    }

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

    .benefit-row,
    .benefit-row.reverse {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.thanks-container {
    max-width: 800px;
    margin: 150px auto 100px;
    padding: 60px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 1.15rem;
    color: #3a3a3a;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-service-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #c9a961;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #c9a961;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.back-link:hover {
    background: #b8954d;
}

.page-header {
    background: #2a2a2a;
    color: #fff;
    padding: 150px 20px 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 500;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 30px 0 15px;
    color: #2a2a2a;
}

.page-content p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info-box {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.info-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.info-item {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 1rem;
    color: #3a3a3a;
}

@media (max-width: 768px) {
    .info-grid {
        flex-direction: column;
    }
}