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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafbfc;
}

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-magazine {
    background-color: #ffffff;
    border-bottom: 3px solid #e67e22;
    padding: 1.5rem 5%;
}

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

.brand-area {
    flex: 1;
}

.brand-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.brand-tagline {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

.nav-magazine {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-magazine a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.hero-magazine {
    background-color: #ffffff;
    padding: 4rem 5%;
}

.hero-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text-column {
    flex: 1;
    min-width: 300px;
}

.hero-heading {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
}

.stat-label {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.hero-image-column {
    flex: 1;
    min-width: 300px;
}

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

.intro-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.main-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.main-column p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #555;
}

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

.callout-box, .info-box, .team-box {
    background-color: #fff;
    padding: 1.5rem;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.callout-box h4, .info-box h4, .team-box h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.callout-box p, .info-box p, .team-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.team-box img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
    object-fit: cover;
    background-color: #ecf0f1;
}

.services-preview {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.service-grid-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-content {
    padding: 1.5rem;
}

.service-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
}

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    background-color: #e67e22;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #34495e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    margin-left: 1rem;
}

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

.story-section {
    padding: 4rem 5%;
    background-color: #ecf0f1;
}

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

.narrow-column h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.narrow-column p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

blockquote {
    background-color: #ffffff;
    border-left: 5px solid #e67e22;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #34495e;
    border-radius: 4px;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: normal;
}

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.form-intro {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro p {
    font-size: 1.05rem;
    color: #555;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    background-color: #e67e22;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.testimonial {
    background-color: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.testimonial p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #ecf0f1;
}

.disclaimer-box {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    border: 2px solid #95a5a6;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.footer-magazine {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

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

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

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

.references {
    list-style-position: inside;
    font-size: 0.85rem;
}

.references li {
    margin-bottom: 0.8rem;
}

.references a {
    color: #bdc3c7;
    text-decoration: none;
}

.references a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1.5rem 5%;
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #e67e22;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-cookie.reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background-color: #5d6d7e;
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 4rem 5%;
    text-align: center;
}

.page-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: #bdc3c7;
}

.about-content {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.values-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.values-grid {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #e67e22;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.process-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    margin-bottom: 2rem;
    padding-left: 3rem;
    position: relative;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e67e22;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-list li strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.cta-section {
    padding: 4rem 5%;
    background-color: #ecf0f1;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.cta-box-centered h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-box-centered p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.services-detailed {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    min-width: 300px;
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ecf0f1;
}

.service-text-block {
    flex: 1;
    padding: 2.5rem;
    min-width: 300px;
}

.service-text-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-large {
    font-size: 1.8rem;
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-text-block p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #555;
}

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

.service-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

.booking-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.booking-container p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-page-content {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e67e22;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.map-section {
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.map-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.map-placeholder {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ecf0f1;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.thanks-content {
    padding: 6rem 5%;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.thanks-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-box > p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #2c3e50;
    margin: 0;
}

.thanks-next {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thanks-next h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next ol li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-page a {
    color: #e67e22;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #d35400;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-magazine {
        margin-top: 1rem;
        gap: 1rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .btn-secondary {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}