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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.site-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 5px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.magazine-layout {
    background-color: var(--bg-white);
}

.hero-magazine {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--primary-color);
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 60px 40px;
}

.hero-overlay h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    opacity: 0.95;
}

.intro-columns {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.column-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.main-column h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.main-column p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-callout {
    background-color: var(--bg-light);
    padding: 35px;
    margin: 40px 0;
    border-left: 5px solid var(--secondary-color);
}

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

.feature-callout p {
    margin: 0;
    font-size: 17px;
}

.sidebar-column {
    flex: 1;
    min-width: 320px;
}

.sidebar-card {
    background-color: var(--bg-white);
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sidebar-card h4 {
    font-size: 20px;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.sidebar-card p {
    margin: 0 20px 20px;
    color: var(--text-light);
    font-size: 15px;
}

.services-preview {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.large {
    flex-basis: 100%;
    flex-direction: row;
}

.service-card.medium {
    flex-basis: calc(50% - 15px);
}

.service-card.small {
    flex-basis: calc(33.333% - 20px);
}

.service-image {
    background-color: var(--bg-light);
}

.service-card.large .service-image {
    flex: 1;
}

.service-card.large .service-content {
    flex: 1;
}

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

.service-card.medium .service-image img,
.service-card.large .service-image img {
    height: 400px;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
}

.booking-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.booking-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.booking-info {
    flex: 1;
    min-width: 350px;
}

.booking-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.booking-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.selected-service-display {
    background-color: var(--bg-light);
    padding: 25px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
}

.booking-form-container {
    flex: 1;
    min-width: 400px;
}

.booking-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

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

.visual-break {
    height: 600px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.disclaimer-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-left: 5px solid var(--accent-color);
    max-width: 900px;
    margin: 0 auto;
}

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

.disclaimer-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.about-page,
.services-page,
.contact-page,
.legal-page,
.thanks-page {
    min-height: calc(100vh - 300px);
}

.about-hero,
.services-hero,
.contact-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.services-hero p,
.contact-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

.about-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.about-main {
    flex: 2;
    min-width: 600px;
}

.about-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
    border-radius: 8px;
}

.about-main h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-main h3 {
    font-size: 28px;
    margin: 40px 0 15px;
    color: var(--primary-color);
}

.about-main p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.highlight-box p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
}

.about-sidebar {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
}

.info-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

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

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

.service-detail-card {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex-wrap: wrap;
}

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

.service-visual {
    flex: 1;
    min-width: 400px;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
    padding: 40px;
    min-width: 400px;
}

.service-info h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-display {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-info p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 10px 0;
    color: var(--text-light);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

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

.booking-cta-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.selected-service-info {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.contact-content {
    padding: 80px 0;
}

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

.contact-info-column {
    flex: 1;
    min-width: 350px;
}

.contact-card {
    background-color: var(--bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
}

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

.contact-card p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.email-text {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-visual-column {
    flex: 1;
    min-width: 400px;
}

.contact-visual-column img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-box {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

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

.info-box p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.legal-page .container {
    max-width: 900px;
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 46px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: var(--primary-color);
}

.legal-section h4 {
    font-size: 18px;
    margin: 20px 0 10px;
    color: var(--primary-color);
}

.legal-section p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section ul li {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.thanks-content {
    padding: 80px 0;
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-confirmation {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 40px auto;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps ul {
    list-style-position: inside;
}

.next-steps ul li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-image {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

@media (max-width: 1024px) {
    .service-card.large {
        flex-direction: column;
    }

    .service-card.medium {
        flex-basis: 100%;
    }

    .service-card.small {
        flex-basis: calc(50% - 15px);
    }

    .main-column {
        min-width: 100%;
    }

    .sidebar-column {
        min-width: 100%;
    }

    .about-main {
        min-width: 100%;
    }

    .about-sidebar {
        min-width: 100%;
    }

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

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        justify-content: space-between;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .main-column h2 {
        font-size: 32px;
    }

    .section-title {
        font-size: 36px;
    }

    .service-card.small {
        flex-basis: 100%;
    }

    .booking-info {
        min-width: 100%;
    }

    .booking-form-container {
        min-width: 100%;
    }

    .contact-info-column,
    .contact-visual-column {
        min-width: 100%;
    }

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

    .cookie-content p {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        padding: 40px 20px;
    }

    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .thanks-box h1 {
        font-size: 32px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}