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

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

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.magazine-header {
    background-color: #ffffff;
    border-bottom: 3px solid #d4a574;
}

.magazine-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left .logo {
    font-size: 28px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    font-family: 'Georgia', serif;
}

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

.nav-center a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Arial', sans-serif;
}

.nav-center a:hover {
    color: #d4a574;
}

.nav-right {
    display: flex;
    gap: 20px;
}

.nav-right a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #d4a574;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-image-block {
    position: relative;
    height: 700px;
    overflow: hidden;
    background-color: #3a3a3a;
}

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 50px;
}

.hero-overlay h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #555;
    font-style: italic;
}

.magazine-intro {
    padding: 60px 60px 80px;
}

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

.intro-main {
    flex: 2;
}

.intro-main h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.intro-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 30px;
    text-align: center;
}

.highlight-box h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #d4a574;
}

.highlight-box p {
    font-size: 15px;
    font-family: 'Arial', sans-serif;
}

.featured-collections {
    background-color: #ffffff;
    padding: 80px 60px;
}

.section-title {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.collection-card {
    background-color: #f9f7f4;
    overflow: hidden;
    flex: 1;
    min-width: 300px;
}

.collection-card.wide-card {
    flex: 2;
    min-width: 600px;
}

.collection-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #d4a574;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 16px;
    color: #555;
}

.services-preview {
    padding: 80px 60px;
    background-color: #f4f1ed;
}

.services-header-block {
    text-align: center;
    margin-bottom: 60px;
}

.services-header-block h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-featured {
    flex: 1.5;
    background-color: #ffffff;
}

.service-featured img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #3a3a3a;
}

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.price-tag {
    font-size: 24px;
    color: #d4a574;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #d4a574;
}

.services-compact {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.compact-service {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #d4a574;
}

.compact-service h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.compact-service p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #555;
}

.compact-price {
    font-size: 18px;
    color: #2c2c2c;
    font-weight: bold;
}

.experience-section {
    background-color: #ffffff;
    padding: 80px 60px;
}

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

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.experience-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.experience-list {
    list-style: none;
    margin-top: 30px;
}

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

.experience-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.experience-visual {
    flex: 1;
}

.experience-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #3a3a3a;
}

.booking-section {
    background-color: #2c2c2c;
    padding: 80px 60px;
    color: #ffffff;
}

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

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
}

.booking-header p {
    font-size: 17px;
    color: #d4d4d4;
}

.magazine-form {
    background-color: #ffffff;
    padding: 50px;
    color: #2c2c2c;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #d4d4d4;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    background-color: #f9f7f4;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
}

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

.info-columns {
    display: flex;
    gap: 40px;
    padding: 80px 60px;
    background-color: #f9f7f4;
}

.info-block {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

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

.magazine-footer {
    background-color: #1a1a1a;
    color: #d4d4d4;
    padding: 60px 60px 30px;
}

.footer-columns {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    border-top: 1px solid #3a3a3a;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #3a3a3a;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 25px;
    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.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.btn-accept {
    background-color: #d4a574;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #3a3a3a;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #555;
}

@media (max-width: 1200px) {
    .magazine-nav {
        padding: 20px 30px;
    }

    .hero-overlay {
        left: 30px;
        right: 30px;
        max-width: none;
    }

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

    .experience-split {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-center {
        flex-direction: column;
        gap: 15px;
    }

    .intro-columns {
        flex-direction: column;
    }

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

    .info-columns {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

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

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

.page-hero {
    background-color: #2c2c2c;
    padding: 80px 60px;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 20px;
    color: #d4a574;
}

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

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #3a3a3a;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #3a3a3a;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

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

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

.service-price-block {
    margin-top: 25px;
    padding: 20px;
    background-color: #f4f1ed;
    text-align: center;
}

.price-amount {
    font-size: 28px;
    color: #d4a574;
    font-weight: bold;
}

.booking-cta-section {
    background-color: #d4a574;
    padding: 80px 60px;
    text-align: center;
}

.cta-content-box {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.cta-content-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content-box p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-family: 'Arial', sans-serif;
}

.cta-button-large:hover {
    background-color: #1a1a1a;
}

.about-intro-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.about-intro-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text-block {
    flex: 1.5;
}

.about-text-block h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
    line-height: 1.8;
}

.about-image-block {
    flex: 1;
}

.about-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #3a3a3a;
}

.values-section {
    background-color: #f4f1ed;
    padding: 80px 60px;
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

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

.team-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 17px;
    color: #555;
}

.contact-page {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #3a3a3a;
    line-height: 1.7;
}

.contact-details {
    background-color: #f4f1ed;
    padding: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.contact-item p {
    font-size: 15px;
    color: #555;
    margin-bottom: 5px;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #3a3a3a;
}

.legal-page {
    padding: 80px 60px;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #3a3a3a;
    line-height: 1.8;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #3a3a3a;
    line-height: 1.7;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f9f7f4;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
}

.thanks-icon {
    font-size: 64px;
    color: #d4a574;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.thanks-details {
    background-color: #f4f1ed;
    padding: 30px;
    margin: 30px 0;
    text-align: left;
}

.thanks-details p {
    margin-bottom: 12px;
    font-size: 16px;
}

.thanks-details strong {
    color: #1a1a1a;
}

.thanks-actions {
    margin-top: 40px;
}

.thanks-actions a {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s;
    margin: 0 10px;
}

.thanks-actions a:hover {
    background-color: #d4a574;
}

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

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

    .about-intro-grid {
        flex-direction: column;
    }

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