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

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

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    font-family: 'Arial', sans-serif;
    border-bottom: 1px solid #ddd;
}

.header-magazine {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #4a4a4a;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #4CAF50;
    color: #fff;
}

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

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

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

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

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 30px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: normal;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 20px;
    font-family: 'Arial', sans-serif;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-section {
    padding: 80px 0;
}

.three-col-layout {
    display: flex;
    gap: 50px;
}

.col-main {
    flex: 2;
}

.col-sidebar {
    flex: 1;
}

.col-main h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
    line-height: 1.3;
}

.col-main p {
    margin-bottom: 25px;
    font-size: 17px;
}

.sidebar-card {
    background-color: #f5f5f5;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #2c2c2c;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: normal;
}

.sidebar-card p {
    font-size: 15px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-inline {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-inline:hover {
    background-color: #000;
}

.sidebar-stats {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #2c2c2c;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-break {
    margin: 80px 0;
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.services-magazine {
    padding: 80px 0;
    background-color: #fff;
}

.section-title-magazine {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
}

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

.service-card-large {
    width: 100%;
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    background-color: #fafafa;
    padding: 30px;
}

.service-card-medium {
    width: calc(50% - 15px);
    background-color: #fafafa;
    padding: 25px;
}

.service-image {
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #e0e0e0;
}

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

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: normal;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 25px 0;
}

.btn-service {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #000;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonials-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
}

.testimonials-layout {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #fff;
    padding: 35px;
    border-left: 3px solid #2c2c2c;
}

.testimonial-card p {
    font-size: 17px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-card cite {
    font-size: 14px;
    font-style: normal;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.booking-form-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: normal;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

.booking-form {
    background-color: #fafafa;
    padding: 40px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #4CAF50;
}

.selected-service-display p {
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
}

.selected-service-display p:last-child {
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4a4a4a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    background-color: #fff;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

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

.why-choose-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.two-col-asymmetric {
    display: flex;
    gap: 60px;
}

.col-narrow {
    flex: 1;
}

.col-narrow h2 {
    font-size: 36px;
    font-weight: normal;
    line-height: 1.3;
}

.col-wide {
    flex: 2;
}

.col-wide p {
    font-size: 17px;
    margin-bottom: 25px;
}

.footer-magazine {
    background-color: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: normal;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    color: #ccc;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    color: #999;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.page-hero {
    padding: 80px 0 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
}

.page-hero p {
    font-size: 18px;
    color: #666;
    font-family: 'Arial', sans-serif;
}

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

.content-columns {
    display: flex;
    gap: 60px;
}

.main-content {
    flex: 2;
}

.main-content h2 {
    font-size: 32px;
    margin: 40px 0 25px;
    font-weight: normal;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content p {
    font-size: 17px;
    margin-bottom: 20px;
}

.image-inline {
    margin: 40px 0;
    background-color: #e0e0e0;
}

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

.quote-block {
    background-color: #f5f5f5;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #2c2c2c;
}

.quote-block p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
}

.sidebar-content {
    flex: 1;
}

.info-card {
    background-color: #f5f5f5;
    padding: 25px;
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.info-card p {
    font-size: 18px;
    font-weight: bold;
    color: #2c2c2c;
}

.cta-sidebar {
    background-color: #2c2c2c;
    color: #fff;
    padding: 30px;
    margin-top: 40px;
}

.cta-sidebar h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: normal;
}

.cta-sidebar p {
    font-size: 15px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-sidebar {
    display: inline-block;
    padding: 12px 28px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-sidebar:hover {
    background-color: #f0f0f0;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #fafafa;
    padding: 40px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: normal;
}

.price-large {
    font-size: 36px;
    font-weight: bold;
    color: #2c2c2c;
    margin: 20px 0;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    font-weight: normal;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: bold;
}

.booking-cta-section {
    padding: 80px 0;
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
}

.booking-cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: normal;
}

.booking-cta-section p {
    font-size: 16px;
    margin-bottom: 35px;
    font-family: 'Arial', sans-serif;
}

.btn-large {
    display: inline-block;
    padding: 18px 45px;
    background-color: #fff;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-large:hover {
    background-color: #f0f0f0;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: normal;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
}

.contact-block p {
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.contact-block .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.contact-details-extended {
    flex: 1;
}

.contact-details-extended h2 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: normal;
}

.contact-details-extended h3 {
    font-size: 20px;
    margin: 30px 0 15px;
    font-weight: normal;
}

.contact-details-extended p {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

.contact-details-extended ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.contact-details-extended ul li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
}

.contact-details-extended ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
}

.location-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.location-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
}

.cities-grid {
    display: flex;
    gap: 30px;
}

.city-card {
    flex: 1;
    background-color: #fff;
    padding: 35px;
}

.city-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: normal;
}

.city-card p {
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #666;
}

.thanks-section {
    padding: 100px 0;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: normal;
}

.thanks-lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
    font-family: 'Arial', sans-serif;
}

.confirmation-details {
    background-color: #f5f5f5;
    padding: 50px;
    margin-bottom: 50px;
    text-align: left;
}

.confirmation-details p {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.selected-info {
    background-color: #e8f5e9;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #4CAF50;
}

.booking-summary h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: normal;
}

.booking-summary p {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.confirmation-details h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.next-steps {
    padding-left: 25px;
    margin-bottom: 30px;
}

.next-steps li {
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #fff;
}

.container-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-legal h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: normal;
}

.last-updated {
    font-size: 14px;
    color: #666;
    font-family: 'Arial', sans-serif;
    margin-bottom: 40px;
}

.container-legal h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.container-legal h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: normal;
}

.container-legal p {
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
}

.container-legal ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.container-legal ul li {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.container-legal a {
    color: #2c2c2c;
    text-decoration: underline;
}

.container-legal a:hover {
    color: #000;
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

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

    .three-col-layout,
    .two-col-asymmetric,
    .content-columns,
    .contact-layout {
        flex-direction: column;
    }

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

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

    .testimonials-layout {
        flex-direction: column;
    }

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

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

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

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

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