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

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.magazine-header {
    background-color: #ffffff;
    border-bottom: 3px solid #2c3e50;
    padding: 30px 0;
}

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

.brand-area .logo {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.brand-area .tagline {
    font-size: 14px;
    color: #7f8c8d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #e67e22;
}

.hero-magazine {
    background-color: #ecf0f1;
    padding: 80px 40px;
}

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

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

.hero-headline {
    font-size: 52px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 35px;
}

.cta-hero {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #d35400;
}

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

.hero-image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.intro-narrative {
    padding: 70px 40px;
    background-color: #ffffff;
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

.services-grid {
    padding: 90px 40px;
    background-color: #f9fafb;
}

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

.section-heading {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #bdc3c7;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2c3e50;
}

.form-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.form-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.trust-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.testimonials-magazine {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px 40px;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 15px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.magazine-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}

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

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    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;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie {
    background-color: #e67e22;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #d35400;
}

.btn-cookie-alt {
    background-color: transparent;
    color: #ecf0f1;
    border: 1px solid #ecf0f1;
}

.btn-cookie-alt:hover {
    background-color: #34495e;
}

.about-page,
.services-page,
.contact-page,
.legal-page,
.thanks-page {
    padding: 60px 40px;
}

.about-hero,
.contact-intro,
.services-intro,
.thanks-content {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1,
.contact-intro h1,
.services-intro h1,
.thanks-content h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-large {
    font-size: 24px;
    line-height: 1.6;
    color: #555;
}

.intro-text {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 0;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.philosophy-section,
.approach-section,
.values-section {
    padding: 80px 0;
}

.philosophy-section h2,
.approach-section h2,
.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.section-intro {
    font-size: 19px;
    text-align: center;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.approach-columns {
    display: flex;
    gap: 50px;
}

.approach-col {
    flex: 1;
}

.approach-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detailed-item {
    margin-bottom: 80px;
}

.service-content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-content-split.reverse {
    flex-direction: row-reverse;
}

.service-image-area {
    flex: 1;
}

.service-image-area img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-text-area {
    flex: 1;
}

.service-text-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

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

.service-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.booking-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f9fa;
}

.booking-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.booking-cta p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
}

.contact-details {
    padding: 60px 0;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note,
.location-info {
    padding: 60px 0;
}

.contact-note h2,
.location-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-note p,
.location-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.contact-note a {
    color: #e67e22;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #34495e;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-section a {
    color: #e67e22;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-updated {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 40px;
}

.thanks-message {
    max-width: 700px;
    margin: 0 auto;
}

.confirmation-text {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.booking-summary {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #e67e22;
}

.booking-summary p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.booking-summary strong {
    font-weight: 600;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.steps-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #e67e22;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #d35400;
}

.btn-secondary {
    background-color: #34495e;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #2c3e50;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-content-wrap,
    .container-split,
    .service-content-split,
    .approach-columns,
    .contact-grid {
        flex-direction: column;
    }

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

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

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

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

    .hero-headline {
        font-size: 36px;
    }

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