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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #6e5738;
}

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

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

.header {
    background-color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0ddd7;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    flex: 0 0 auto;
}

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

.header-center {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 12px;
    color: #8b6f47;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 0 0 auto;
}

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

.nav a:hover {
    color: #8b6f47;
}

.hero-magazine {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: #d4c9b8;
}

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

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

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.intro-columns {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.column-narrow {
    flex: 0 0 350px;
}

.column-narrow h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b6f47;
}

.column-narrow p {
    font-size: 16px;
    line-height: 1.8;
}

.column-wide {
    flex: 1;
    background-color: #fff;
    padding: 30px;
}

.column-wide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.caption {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.content-grid {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
}

.grid-text {
    flex: 1;
    background-color: #fff;
    padding: 50px;
}

.grid-text h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.grid-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.grid-sidebar {
    flex: 0 0 300px;
}

.fact-box {
    background-color: #8b6f47;
    color: #fff;
    padding: 35px;
}

.fact-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.fact-box ul {
    list-style: none;
}

.fact-box li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
}

.fact-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 20px;
}

.full-width-image {
    width: 100%;
    height: 700px;
    background-color: #c9baa6;
}

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

.staggered-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.stagger-left {
    flex: 1;
    padding-right: 40px;
}

.stagger-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #8b6f47;
}

.stagger-left p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stagger-right {
    flex: 0 0 450px;
    background-color: #e6e0d6;
}

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

.testimonial-section {
    background-color: #2c2c2c;
    padding: 80px 40px;
    margin: 80px 0;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.testimonial p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

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

.services-preview {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c2c2c;
}

.services-cards {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 0;
    transition: transform 0.3s ease;
}

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

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

.service-card h4 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 15px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #8b6f47;
    margin: 20px 25px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #6e5738;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: #e6e0d6;
    padding: 80px 40px;
    margin: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.form-intro {
    font-size: 16px;
    margin-bottom: 35px;
    color: #666;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    background-color: #fafafa;
}

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

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

.btn-submit:hover {
    background-color: #6e5738;
}

.heritage-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.heritage-content {
    flex: 1;
}

.heritage-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #8b6f47;
}

.heritage-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.heritage-image {
    flex: 0 0 400px;
    background-color: #d4c9b8;
}

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

.disclaimer-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.disclaimer-box {
    background-color: #fff;
    padding: 40px;
    border-left: 4px solid #8b6f47;
}

.disclaimer-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 700;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 40px 30px;
}

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

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

.footer-col h5 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
}

@media (max-width: 768px) {
    .intro-columns,
    .content-grid,
    .staggered-content,
    .heritage-section {
        flex-direction: column;
    }

    .column-narrow,
    .grid-sidebar,
    .stagger-right,
    .heritage-image {
        flex: 1;
        width: 100%;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .services-cards {
        flex-direction: column;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }
}