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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fffbf0;
    border-bottom: 1px solid #e8d7b8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #8b6f47;
    font-family: 'Arial', sans-serif;
}

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

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s ease;
    position: relative;
}

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

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

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

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 62px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #c99a6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.magazine-layout {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.main-column {
    flex: 2;
    min-width: 300px;
}

.sidebar-column {
    flex: 1;
    min-width: 280px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 15px;
}

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

.multi-column-section {
    display: flex;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

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

.column h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

.column p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.image-with-caption {
    margin: 50px 0;
    background-color: var(--bg-light);
}

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

.image-caption {
    padding: 20px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

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

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

.price {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Arial', sans-serif;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

.sidebar-card {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

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

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

.contact-form {
    background-color: var(--bg-light);
    padding: 50px;
    margin: 60px 0;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

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

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 50px;
    border: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.full-width-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 80px 0;
}

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

.grid-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 60px 0;
}

.grid-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.grid-item-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.grid-item-content {
    padding: 30px;
}

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

.grid-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 40px 30px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-family: 'Arial', sans-serif;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #999;
    font-family: 'Arial', sans-serif;
}

.disclaimer {
    background-color: #f9f7f4;
    border-left: 4px solid var(--accent-color);
    padding: 25px;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    font-family: 'Arial', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.97);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

.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;
    font-family: 'Arial', sans-serif;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.contact-info-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 35px;
    margin-bottom: 30px;
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.thanks-section h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

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

.service-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.service-option {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
    padding: 25px;
    border: 2px solid var(--border-color);
    background-color: var(--bg-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-option.selected {
    border-color: var(--accent-color);
    background-color: #fffbf5;
}

.service-option h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-option .price {
    font-size: 28px;
}

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

    .multi-column-section {
        flex-direction: column;
    }

    .grid-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 20px;
    }

    nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .section-title {
        font-size: 32px;
    }

    .magazine-layout {
        padding: 0 20px;
        margin: 40px auto;
    }

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

    .grid-item {
        flex: 1 1 100%;
    }

    .service-option {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}