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

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

.ad-disclosure {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-transparent {
    position: absolute;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.header-solid {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 1px;
}

.header-transparent .logo {
    color: #fff;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.header-transparent .nav-links a {
    color: #fff;
}

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

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

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

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

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

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 22px;
    font-weight: 300;
}

.story-intro {
    padding: 100px 20px;
    background: #fafafa;
}

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

.intro-large {
    font-size: 26px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
    color: #2c2c2c;
}

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

.image-text-split {
    padding: 80px 20px;
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.insight-block {
    padding: 120px 20px;
    background: #2c2c2c;
    color: #fff;
}

.insight-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-content h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 600;
}

.insight-content p {
    font-size: 20px;
    line-height: 1.7;
}

.services-reveal {
    padding: 100px 20px;
    background: #fff;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.services-intro p {
    font-size: 19px;
    color: #666;
}

.service-cards-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 280px;
    overflow: hidden;
    background: #d8d8d8;
}

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

.card-content {
    padding: 30px;
}

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

.card-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8b7355;
    margin: 20px 0;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #8b7355;
}

.testimonials-inline {
    padding: 100px 20px;
    background: #f5f5f5;
}

.testimonial-flow {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background: #fff;
    border-left: 4px solid #8b7355;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 15px;
    color: #999;
    font-style: normal;
}

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

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c2c2c;
}

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

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

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

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

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

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

.btn-submit:hover {
    background: #8b7355;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.final-cta {
    padding: 120px 20px;
    background: #8b7355;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: #fff;
    color: #8b7355;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #252525;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #777;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.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: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #6a5742;
}

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

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

.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
}

.page-hero-small {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    color: #2c2c2c;
}

.about-content {
    padding: 80px 20px;
}

.values-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.values-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    padding: 40px;
    background: #fff;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.team-visual {
    padding: 80px 20px;
}

.approach-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.approach-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

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

.services-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-detail-list {
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
}

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

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.service-description {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    font-size: 16px;
    margin-bottom: 20px;
    color: #777;
    line-height: 1.6;
}

.service-price {
    font-size: 20px;
    margin-bottom: 25px;
    color: #666;
}

.service-price strong {
    font-size: 28px;
    color: #8b7355;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #8b7355;
}

.services-cta {
    padding: 80px 20px;
    background: #f5f5f5;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: #fff;
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-content {
    padding: 80px 20px;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info-block p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #666;
}

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

.detail-item {
    margin-bottom: 30px;
}

.detail-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.contact-note {
    padding: 25px;
    background: #f9f9f9;
    border-left: 4px solid #8b7355;
}

.contact-note p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

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

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

.location-info {
    padding: 80px 20px;
    background: #f5f5f5;
}

.location-container {
    max-width: 800px;
    margin: 0 auto;
}

.location-container h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.location-container p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.thanks-container {
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #8b7355;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    border-radius: 50%;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

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

.service-confirmation {
    padding: 25px;
    background: #f9f9f9;
    margin-bottom: 40px;
    border-left: 4px solid #8b7355;
}

.service-confirmation p {
    font-size: 17px;
    color: #555;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c2c2c;
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 15px 0;
    font-size: 17px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 30px;
    position: relative;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 35px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #8b7355;
}

.btn-secondary {
    background: #f5f5f5;
    color: #2c2c2c;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background: #e8e8e8;
}

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

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

    .service-cards-flow {
        flex-direction: column;
    }

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

    .testimonial-flow {
        flex-direction: column;
    }

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

    .values-container {
        flex-direction: column;
    }

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

    .service-detail:nth-child(even) {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}