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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4af37;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

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

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

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

.hero-section {
    position: relative;
    height: 75vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #3a5a4d;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin-left: 8%;
    color: white;
    transform: translateY(-20px);
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 19px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #c5a032;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.offset-section {
    display: flex;
    align-items: stretch;
    margin: 80px 0;
    min-height: 450px;
}

.offset-left {
    flex-direction: row;
}

.offset-right {
    flex-direction: row-reverse;
}

.offset-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.offset-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #8b7355;
}

.offset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.offset-section:hover .offset-image img {
    transform: scale(1.05);
}

.offset-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.2;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 60px 0;
    padding: 0 20px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 35px 28px;
    position: relative;
    transition: all 0.3s;
}

.service-card:nth-child(odd) {
    transform: translateY(-15px);
}

.service-card:nth-child(even) {
    transform: translateY(15px);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(44, 95, 79, 0.15);
}

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

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
    display: block;
}

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

.asymmetric-wrapper {
    display: flex;
    gap: 40px;
    margin: 100px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.narrow-column {
    flex: 0.4;
}

.wide-column {
    flex: 0.6;
}

.info-block {
    background: var(--primary-color);
    color: white;
    padding: 45px 35px;
    margin-bottom: 30px;
    position: relative;
}

.info-block::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    z-index: -1;
}

.info-block h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.info-block p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

.image-stack {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.stacked-img {
    position: absolute;
    width: 70%;
    height: 300px;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    background-color: #8b7355;
}

.stacked-img:first-child {
    top: 0;
    left: 0;
    z-index: 2;
}

.stacked-img:last-child {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.contact-section {
    background: var(--bg-light);
    padding: 80px 20px;
    margin-top: 100px;
}

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

.contact-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.info-item {
    flex: 1;
    min-width: 250px;
}

.info-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

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

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

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

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.quote-form {
    background: white;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 60px auto;
}

.quote-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
    margin-top: 100px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: var(--secondary-color);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-page ul,
.legal-page ol {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
}

@media (max-width: 968px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .offset-section {
        flex-direction: column !important;
    }

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

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: translateY(0);
    }

    .image-stack {
        min-height: 400px;
    }

    .stacked-img {
        width: 85%;
    }
}

@media (max-width: 580px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .offset-content {
        padding: 40px 25px;
    }

    .quote-form {
        padding: 30px 20px;
    }

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