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

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
}

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

.ad-notice {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

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

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

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

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

.hero-magazine {
    display: flex;
    min-height: 600px;
    background-color: #fff;
    border-bottom: 3px solid #1a1a1a;
}

.hero-image-side {
    flex: 0 0 55%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content-side {
    flex: 0 0 45%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-side h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content-side p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    background-color: #8b4513;
    color: #fff;
    padding: 16px 42px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #6d3610;
}

.three-col-section {
    padding: 90px 0;
    background-color: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 65px;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #5a5a5a;
    max-width: 700px;
    margin: 0 auto;
}

.three-columns {
    display: flex;
    gap: 35px;
}

.column {
    flex: 1;
    background-color: #fff;
    padding: 45px 35px;
    border-left: 4px solid #8b4513;
}

.column h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.column p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

.column-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 25px;
    background-color: #e0e0e0;
}

.wide-text-section {
    padding: 100px 0;
    background-color: #fff;
}

.wide-content {
    max-width: 900px;
    margin: 0 auto;
    columns: 2;
    column-gap: 50px;
    font-size: 17px;
    line-height: 1.9;
    color: #3a3a3a;
}

.wide-content h2 {
    column-span: all;
    font-size: 42px;
    margin-bottom: 40px;
    text-align: center;
}

.wide-content p {
    margin-bottom: 20px;
}

.split-layout {
    display: flex;
    min-height: 500px;
}

.split-content {
    flex: 1;
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.split-content h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    padding: 40px 30px;
    border-top: 5px solid #1a1a1a;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b4513;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    color: #5a5a5a;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    padding: 14px 36px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.form-section {
    padding: 90px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}

.form-section p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #d0d0d0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #2a2a2a;
    padding: 50px 45px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #4a4a4a;
    background-color: #3a3a3a;
    color: #fff;
    font-family: inherit;
}

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

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

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

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

.footer {
    background-color: #1a1a1a;
    color: #c0c0c0;
    padding: 70px 0 30px;
}

.footer-columns {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col address {
    font-size: 15px;
    line-height: 1.8;
    font-style: normal;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    font-size: 14px;
}

.disclaimer {
    background-color: #f0f0f0;
    padding: 40px;
    margin: 50px 0;
    border-left: 5px solid #8b4513;
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-info-section {
    padding: 90px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-details {
    flex: 0 0 40%;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8b4513;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.legal-page {
    padding: 90px 0;
}

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

.legal-content h1 {
    font-size: 46px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4a4a4a;
}

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

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-content .cta-primary {
    margin-top: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: #8b4513;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.cookie-reject:hover {
    background-color: #fff;
    color: #2a2a2a;
}

.about-hero {
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #fff;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #d0d0d0;
}

.timeline-section {
    padding: 90px 0;
}

.timeline-item {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.timeline-image {
    flex: 1;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.email-text {
    color: #c0c0c0;
}

@media (max-width: 968px) {
    .hero-magazine {
        flex-direction: column;
    }

    .hero-image-side,
    .hero-content-side {
        flex: 1 1 100%;
    }

    .hero-image-side {
        min-height: 400px;
    }

    .three-columns {
        flex-direction: column;
    }

    .wide-content {
        columns: 1;
    }

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

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

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-details {
        flex: 1 1 100%;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
    }
}
