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

:root {
    --primary: #2d3e50;
    --secondary: #8b7355;
    --accent: #c9a87c;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border: #e0ddd8;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

header {
    background: var(--primary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ad-disclosure {
    background: #fffbeb;
    border-bottom: 1px solid #ffd700;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.75rem;
    color: #856404;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav a {
    color: var(--bg-white);
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero {
    position: relative;
    height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #4a5f73;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--bg-white);
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    max-width: 700px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 15px 40px;
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.cta-button:hover {
    background: #d4b888;
}

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

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary);
    border-bottom: 3px solid var(--accent);
    padding-bottom: 15px;
}

.multi-column-text {
    column-count: 2;
    column-gap: 40px;
    text-align: justify;
    font-size: 1.05rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    display: flex;
    gap: 30px;
    background: var(--bg-light);
    padding: 30px;
    border-left: 5px solid var(--secondary);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 5px solid var(--secondary);
}

.service-image {
    width: 280px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    color: var(--secondary);
    font-weight: 700;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.sidebar-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.sidebar-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    font-family: inherit;
    font-size: 1rem;
}

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

.inline-image-section {
    margin: 60px 0;
}

.inline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 20px 0;
}

.split-section {
    display: flex;
    gap: 50px;
    align-items: center;
    margin: 80px 0;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    height: 350px;
    object-fit: cover;
    background-color: #e8e5e0;
}

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

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

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

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-column p,
.footer-column li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #ccc;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

.disclaimer {
    background: #fff9e6;
    border: 1px solid #f0e5c9;
    padding: 25px;
    margin: 60px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 62, 80, 0.98);
    color: var(--bg-white);
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: background 0.3s;
}

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

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

.contact-info {
    background: var(--bg-light);
    padding: 40px;
    margin: 40px 0;
    border-left: 5px solid var(--secondary);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 10px;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.thanks-container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

    .side-column {
        position: static;
    }

    .multi-column-text {
        column-count: 1;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .header-main {
        flex-direction: column;
        gap: 20px;
    }

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