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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #8B7355;
    color: #FFFFFF;
}

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

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

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

.main-header {
    background-color: #F5F1ED;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #D4C4B0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand-area {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C2C2C;
    font-family: 'Arial', sans-serif;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2C2C2C;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B7355;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-magazine {
    margin-bottom: 3rem;
}

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

.hero-visual img {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 3rem 2rem;
    color: #FFFFFF;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    font-weight: 300;
}

.intro-columns {
    padding: 3rem 2rem;
}

.column-layout {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.column-main {
    flex: 2;
}

.column-main h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}

.column-main p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.inline-cta {
    display: inline-block;
    color: #8B7355;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #8B7355;
    padding-bottom: 0.2rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #6F5A40;
    border-bottom-color: #6F5A40;
}

.column-sidebar {
    flex: 1;
}

.sidebar-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.split-insight {
    display: flex;
    gap: 0;
    margin: 4rem 0;
}

.insight-text {
    flex: 1;
    padding: 3rem;
    background-color: #F5F1ED;
}

.insight-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.insight-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.insight-visual img {
    width: 100%;
    height: 100%;
}

.services-grid {
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C2C2C;
}

.grid-three-col {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

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

.card-body {
    padding: 1.8rem;
}

.card-body h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.card-body p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B7355;
    margin: 1.5rem 0;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #8B7355;
}

.full-width-feature {
    padding: 4rem 2rem;
}

.feature-content {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-content h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.feature-text {
    flex: 1;
}

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.feature-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonials-inline {
    padding: 4rem 2rem;
    background-color: #F5F1ED;
}

.testimonials-inline h3 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: #FFFFFF;
    padding: 2rem;
    border-left: 4px solid #8B7355;
    font-style: italic;
}

.testimonial p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #666;
}

.additional-services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-services h3 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.two-column-services {
    display: flex;
    gap: 3rem;
}

.service-block {
    flex: 1;
    padding: 2rem;
    background-color: #F5F1ED;
    border-radius: 8px;
}

.service-block h4 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.service-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #F5F1ED;
}

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

.form-container h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2C2C2C;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #D4C4B0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.closing-statement {
    padding: 4rem 2rem;
    background-color: #2C2C2C;
    color: #FFFFFF;
}

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

.statement-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.statement-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.main-footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 3rem 2rem 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #F5F1ED;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #CCC;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B7355;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .column-layout,
    .split-insight,
    .feature-layout,
    .two-column-services,
    .footer-grid {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .grid-three-col {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}