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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #fafafa;
}

.nav-floating {
    position: fixed;
    top: 20px;
    right: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.nav-ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
}

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

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

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

.hero-asymmetric {
    margin-top: 100px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    right: 0;
    top: 50px;
    width: 60%;
    height: 75vh;
    background-color: #e8e8e8;
}

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

.hero-content-overlap {
    position: relative;
    z-index: 10;
    margin-left: 8%;
    max-width: 520px;
    background: #fff;
    padding: 60px 50px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
}

.hero-content-overlap h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content-overlap p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 35px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.intro-offset {
    margin: 120px 0;
    padding: 0 8%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-text-block {
    flex: 1.2;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text-block p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #555;
}

.intro-image-small {
    flex: 0.8;
    background-color: #e8e8e8;
}

.intro-image-small img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-grid-irregular {
    padding: 100px 8%;
    background: #fff;
}

.section-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 15%;
    color: #1a1a1a;
}

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

.service-card {
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-large {
    flex-basis: calc(55% - 15px);
}

.card-medium {
    flex-basis: calc(45% - 15px);
}

.card-small {
    flex-basis: calc(40% - 15px);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.card-content p {
    margin-bottom: 20px;
    color: #666;
    flex-grow: 1;
}

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

.btn-select-service {
    padding: 12px 25px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #d4a574;
}

.testimonial-offset {
    margin: 80px 0;
    padding: 60px 8%;
    background: #1a1a1a;
}

.testimonial-offset blockquote {
    max-width: 700px;
    margin-left: 20%;
}

.testimonial-offset p {
    font-size: 26px;
    line-height: 1.5;
    color: #fff;
    font-style: italic;
    margin-bottom: 15px;
}

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

.form-section-asymmetric {
    padding: 100px 8%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.contact-form {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

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

.why-us-overlap {
    position: relative;
    margin: 100px 0;
    padding: 0 8%;
    display: flex;
    align-items: center;
    gap: 60px;
}

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

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

.why-content {
    flex: 1;
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
    font-size: 20px;
}

.cta-sticky-bottom {
    background: #d4a574;
    padding: 40px 8%;
    text-align: center;
}

.cta-sticky-bottom p {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.btn-cta-alt {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta-alt:hover {
    background: #333;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 8% 30px;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

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

.footer-column ul li a:hover {
    color: #d4a574;
}

.footer-disclaimer {
    flex-basis: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #999;
}

.footer-bottom {
    flex-basis: 100%;
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

.page-hero-minimal {
    margin-top: 140px;
    padding: 60px 8%;
    text-align: center;
    background: #fff;
}

.page-hero-minimal h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-hero-minimal p {
    font-size: 20px;
    color: #666;
}

.about-story-offset {
    margin: 80px 0;
    padding: 0 8%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text-left {
    flex: 1;
}

.story-text-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-text-left p {
    margin-bottom: 18px;
    color: #555;
    font-size: 17px;
}

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

.story-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.philosophy-asymmetric {
    position: relative;
    margin: 100px 0;
    padding: 0 8%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.philosophy-image-overlap {
    flex: 0.8;
    background-color: #e8e8e8;
}

.philosophy-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.philosophy-content {
    flex: 1.2;
    padding: 40px;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.philosophy-content p {
    margin-bottom: 18px;
    color: #555;
    font-size: 17px;
}

.team-section-irregular {
    padding: 80px 8%;
    background: #fff;
}

.team-section-irregular h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex-basis: calc(50% - 20px);
    max-width: 400px;
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e8e8e8;
}

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

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member p {
    color: #666;
    margin-bottom: 10px;
}

.values-overlap {
    margin: 80px 0;
    padding: 60px 8%;
    background: #fafafa;
}

.values-overlap h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-block {
    flex-basis: calc(50% - 15px);
    padding: 30px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-block p {
    color: #666;
}

.approach-section {
    padding: 80px 8%;
    max-width: 900px;
    margin: 0 auto;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-section p {
    margin-bottom: 18px;
    color: #555;
    font-size: 17px;
}

.cta-about {
    padding: 60px 8%;
    text-align: center;
    background: #1a1a1a;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #fff;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #d4a574;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta-primary:hover {
    background: #c49564;
}

.services-detailed {
    padding: 60px 8%;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-bottom: 25px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: 700;
}

.service-pricing-box {
    background: #fafafa;
    padding: 25px;
    margin-top: 25px;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.additional-info {
    padding: 60px 8%;
    background: #fff;
    max-width: 900px;
    margin: 40px auto;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.additional-info p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.contact-layout-offset {
    padding: 60px 8%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-detail p {
    color: #555;
    line-height: 1.8;
}

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

.contact-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.location-section {
    padding: 60px 8%;
    background: #fff;
    max-width: 800px;
    margin: 40px auto;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section p {
    margin-bottom: 15px;
    color: #555;
    font-size: 16px;
}

.faq-offset {
    padding: 60px 8%;
    margin-left: 10%;
}

.faq-offset h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-hero {
    margin-top: 120px;
    padding: 80px 8%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    background: #f0f8f0;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #4a934a;
}

.thanks-next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.thanks-next-steps li {
    margin-bottom: 12px;
    color: #555;
    font-size: 16px;
}

.thanks-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 15px 30px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d4a574;
}

.btn-secondary {
    padding: 15px 30px;
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.thanks-image {
    flex: 0.8;
    background-color: #e8e8e8;
}

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

.social-proof {
    padding: 80px 8%;
    background: #fafafa;
}

.social-proof h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.testimonials-grid blockquote {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.testimonials-grid p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonials-grid cite {
    color: #d4a574;
    font-style: normal;
    font-weight: 600;
}

.legal-page {
    margin-top: 120px;
    padding: 60px 8%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: #555;
}

.legal-page a {
    color: #d4a574;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1a1a1a;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background: #fafafa;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 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;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #d4a574;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

@media screen and (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

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

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-offset {
        position: relative;
        width: 100%;
        height: 400px;
    }

    .hero-content-overlap {
        margin-left: 0;
        width: 100%;
    }

    .intro-offset,
    .about-story-offset,
    .philosophy-asymmetric,
    .why-us-overlap,
    .contact-layout-offset,
    .service-detail-card,
    .thanks-hero {
        flex-direction: column;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

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

    .value-block,
    .team-member {
        flex-basis: 100%;
    }
}
