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

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

.ad-disclosure {
    background-color: #FFF9E6;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #E0D5C7;
}

.magazine-header {
    background-color: #FFFFFF;
    border-bottom: 3px solid #2C2C2C;
    padding: 25px 0;
}

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

.logo-section {
    flex: 1;
}

.site-logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: lowercase;
    color: #2C2C2C;
}

.tagline {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

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

.split-nav a {
    text-decoration: none;
    color: #2C2C2C;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.split-nav a:hover {
    border-bottom-color: #8B7355;
}

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.hero-overlay h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #2C2C2C;
}

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

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

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

.intro-columns {
    padding: 60px 0;
    background-color: #FAFAFA;
}

.two-column-magazine {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.column-left {
    flex: 1.5;
}

.column-right {
    flex: 1;
}

.column-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.column-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.highlight-box {
    background-color: #F5F1ED;
    padding: 30px;
    border-left: 4px solid #8B7355;
}

.highlight-box h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
}

.services-preview {
    padding: 70px 0;
}

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

.section-title-left {
    font-size: 36px;
    margin-bottom: 40px;
}

.three-column-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.price-tag {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #8B7355;
    margin: 15px 0;
}

.btn-select {
    background-color: #2C2C2C;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-select:hover {
    background-color: #8B7355;
}

.two-column-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card.horizontal {
    flex: 1;
    min-width: 450px;
    display: flex;
    flex-direction: row;
}

.service-card.horizontal .card-image {
    flex: 1;
    height: auto;
}

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

.form-section {
    padding: 70px 0;
    background-color: #F9F7F4;
}

.form-container {
    padding: 50px;
}

.form-container h3 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #D0C8BE;
    font-family: inherit;
    font-size: 15px;
    background-color: #FFFFFF;
}

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

.btn-submit {
    background-color: #8B7355;
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.inspiration-gallery {
    padding: 70px 0;
}

.asymmetric-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item.large {
    flex: 2;
    min-width: 400px;
    height: 400px;
}

.gallery-item.small {
    flex: 1;
    min-width: 280px;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
}

.gallery-text {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background-color: #F5F1ED;
}

.gallery-text h4 {
    font-size: 26px;
    margin-bottom: 15px;
}

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

.testimonials-inline {
    padding: 60px 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
}

.testimonial {
    margin: 30px 0;
    padding: 30px;
    border-left: 4px solid #8B7355;
    background-color: rgba(255, 255, 255, 0.05);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 14px;
    color: #AAA;
}

.site-footer {
    background-color: #1A1A1A;
    color: #AAA;
    padding: 50px 0 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #AAA;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #8B7355;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 20px;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
}

.cookie-content a {
    color: #8B7355;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-accept {
    background-color: #8B7355;
    color: #FFFFFF;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.about-hero {
    padding: 80px 0;
    background-color: #F5F1ED;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.about-image {
    flex: 1;
    min-width: 350px;
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-list-section {
    padding: 70px 0;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

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

.service-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-info .price-tag {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    min-width: 350px;
    height: 350px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-page-section {
    padding: 70px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

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

.info-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #8B7355;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8B7355;
}

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

.btn-home {
    display: inline-block;
    background-color: #2C2C2C;
    color: #FFFFFF;
    padding: 15px 40px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background-color: #8B7355;
}

.legal-page {
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.legal-content h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
}

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

    .split-nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 25px;
    }

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

    .two-column-magazine {
        flex-direction: column;
        gap: 30px;
    }

    .three-column-cards {
        flex-direction: column;
    }

    .service-card.horizontal {
        flex-direction: column;
        min-width: 100%;
    }

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

    .gallery-item.large,
    .gallery-item.small {
        height: 300px;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

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