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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8e44ad;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
}

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

.ad-notice {
    background: #ffeaa7;
    color: var(--text-dark);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    border-bottom: 1px solid #fdcb6e;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-family: Arial, sans-serif;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

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

.hero-magazine {
    background: var(--bg-light);
    padding: 60px 20px;
}

.hero-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-intro {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-image-column {
    flex: 1;
    background: #e0e0e0;
}

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

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #732d91;
}

.intro-magazine {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.magazine-wrapper {
    display: flex;
    gap: 40px;
}

.column-wide {
    flex: 2;
}

.column-narrow {
    flex: 1;
}

.column-wide h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.column-wide p {
    font-size: 18px;
    color: var(--text-light);
}

.highlight-box {
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlight-box p {
    font-size: 16px;
    color: var(--text-light);
}

.visual-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.image-text-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.image-text-offset img {
    flex: 1;
    background: #e0e0e0;
    object-fit: cover;
}

.offset-text-block {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
}

.offset-text-block h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.offset-text-block p {
    font-size: 18px;
    color: var(--text-light);
}

.services-magazine {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services-header {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-subheading {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

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

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

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

.duration {
    font-size: 14px;
    color: var(--text-light);
    font-family: Arial, sans-serif;
}

.select-service {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.select-service:hover {
    background: #1a252f;
}

.service-card.selected {
    border: 2px solid var(--secondary-color);
}

.form-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

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

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 4px;
}

.form-group textarea {
    resize: vertical;
    font-family: Georgia, serif;
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.testimonials-magazine {
    padding: 80px 20px;
    background: var(--bg-light);
}

.testimonials-magazine h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonials-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: var(--text-dark);
    font-family: Arial, sans-serif;
}

.culture-insight {
    padding: 80px 20px;
    background: var(--bg-white);
}

.inline-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    margin-top: 20px;
    border-bottom: 2px solid var(--secondary-color);
    transition: color 0.3s;
}

.inline-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.culture-insight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e0e0e0;
}

.final-cta-magazine {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: var(--bg-light);
}

.main-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 30px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

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

.disclaimer {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-accept:hover {
    background: #732d91;
}

.btn-reject {
    background: #555;
    color: white;
}

.btn-reject:hover {
    background: #333;
}

.cookie-link {
    color: white;
    font-size: 14px;
    text-decoration: underline;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #ecf0f1;
}

.thanks-page {
    padding: 100px 20px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-page h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-page p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.thanks-page .cta-primary {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero-content-split,
    .magazine-wrapper,
    .image-text-offset,
    .testimonials-layout,
    .footer-columns {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .services-grid-magazine {
        flex-direction: column;
    }

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

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

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