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

:root {
    --primary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --border-color: #ddd;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.hero-editorial {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
}

.hero-image-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.main-content {
    background: #fff;
}

.intro-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.content-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-section p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.feature-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

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

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.services-preview {
    padding: 5rem 2rem;
    background: #fafafa;
}

.section-intro {
    font-size: 1.15rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.7;
}

.services-magazine {
    margin-top: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

.service-visual {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-details p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.cta-inline {
    padding: 0.9rem 1.8rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-inline:hover {
    background: #1a252f;
}

.booking-section {
    padding: 5rem 2rem;
    background: #fff;
}

.booking-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

.booking-section > .content-narrow > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.booking-form {
    max-width: 600px;
    margin: 2rem auto;
}

.selected-service-display {
    background: var(--light-bg);
    padding: 1.2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.selected-service-display p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-inline {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: #fff;
}

.testimonial-inline blockquote {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.final-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--light-bg);
}

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.main-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

.footer-column a:hover {
    opacity: 1;
    text-decoration: underline;
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 1.5rem 2rem;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.page-hero-small {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-top: 1rem;
}

.page-content {
    min-height: 60vh;
}

.about-story {
    padding: 3rem 2rem 5rem;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-story h3 {
    font-size: 1.7rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about-story p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.quote-block p {
    font-size: 1.2rem;
    color: #555;
}

.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 8px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.value-item {
    flex: 1;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.services-full {
    padding: 3rem 2rem 5rem;
}

.service-full-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-full-item.reverse {
    flex-direction: row-reverse;
}

.service-full-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-full-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-full-content {
    flex: 1;
}

.service-full-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-full-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.service-details-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    font-size: 0.95rem;
}

.detail-item strong {
    color: var(--primary-color);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.cta-primary:hover {
    background: #c0392b;
}

.contact-info-section {
    padding: 3rem 2rem 5rem;
}

.contact-info-section > .content-narrow > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.email-display {
    font-weight: 600;
    color: var(--primary-color);
}

.note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-additional {
    margin-top: 3rem;
}

.contact-additional h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-additional p {
    margin-bottom: 1.3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem auto;
    border-left: 4px solid var(--accent-color);
}

.service-name {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.next-steps {
    margin: 3rem auto;
    text-align: left;
    max-width: 600px;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

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

.next-steps li {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.thanks-cta {
    margin-top: 3rem;
}

.legal-content {
    padding: 2rem 2rem 5rem;
}

.update-date {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.7rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .feature-card,
    .feature-card.reverse {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
    }

    .service-visual {
        flex: 1;
        width: 100%;
        min-height: 250px;
    }

    .service-full-item,
    .service-full-item.reverse {
        flex-direction: column;
    }

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

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

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

    .service-details-box {
        flex-direction: column;
        gap: 1rem;
    }
}