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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7856;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-white);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-right {
    flex: 1;
    background-color: #d4d4d4;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

.intro-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.intro-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    background-color: #d4d4d4;
}

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

.services-preview {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background-color: #d4d4d4;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0 25px 20px 25px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 25px 15px 25px;
}

.service-link {
    display: inline-block;
    margin: 0 25px 25px 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--secondary-color);
}

.process-split {
    display: flex;
    background-color: var(--bg-white);
}

.process-image {
    flex: 1;
    background-color: #d4d4d4;
}

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

.process-text {
    flex: 1;
    padding: 80px 60px;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.process-step {
    margin-bottom: 35px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.form-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 18px;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 40px 30px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaaaaa;
    font-size: 15px;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #aaaaaa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaaaaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

.cookie-reject:hover {
    opacity: 0.8;
}

.page-header {
    background-color: var(--bg-light);
    padding: 80px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.service-detail.reverse {
    background-color: var(--bg-light);
}

.service-detail-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.service-detail-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-detail-text h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-detail-text ul {
    margin-left: 25px;
    margin-bottom: 30px;
}

.service-detail-text ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

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

.service-pricing {
    margin-top: 35px;
}

.price-large {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.price-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

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

.cta-section {
    background-color: var(--primary-color);
    padding: 80px 60px;
    text-align: center;
    color: var(--bg-white);
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 4px;
    transition: transform 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.about-split {
    display: flex;
    background-color: var(--bg-white);
    padding: 80px 0;
}

.about-image {
    flex: 1;
    background-color: #d4d4d4;
}

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

.about-text {
    flex: 1;
    padding: 60px 80px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.team-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.team-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-image {
    flex: 1;
    background-color: #d4d4d4;
}

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

.materials-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.materials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.materials-content {
    max-width: 900px;
    margin: 0 auto;
}

.materials-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-reupholster {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.why-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-section {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-block .note {
    font-style: italic;
    font-size: 14px;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    background-color: #d4d4d4;
}

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

.visit-section {
    padding: 80px 60px;
    background-color: var(--bg-light);
}

.visit-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
}

.visit-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-section {
    padding: 120px 60px;
    background-color: var(--bg-light);
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.next-steps {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-page {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-container p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-container ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-content,
    .process-split,
    .about-split,
    .team-content,
    .why-content,
    .contact-layout,
    .service-detail-content {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .process-image,
    .process-text {
        min-height: 400px;
    }

    .services-grid,
    .values-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-wrap: wrap;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        padding: 30px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left,
    .process-text,
    .about-text {
        padding: 40px 30px;
    }

    .page-header {
        padding: 50px 30px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .service-detail {
        padding: 50px 30px;
    }

    .nav-container,
    .intro-section,
    .services-preview,
    .form-section,
    .values-section,
    .team-section,
    .materials-section,
    .why-reupholster,
    .contact-section,
    .visit-section,
    .cta-section,
    .legal-page {
        padding-left: 30px;
        padding-right: 30px;
    }
}