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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    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;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

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

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

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e74c3c;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background-color: #ecf0f1;
}

.hero-visual {
    margin-top: 80px;
    height: 90vh;
    position: relative;
}

.hero-image-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #d4c5b9;
}

.hero-text-layer {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 700px;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.hero-text-layer h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-text-layer p {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 300;
}

.story-intro {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

.visual-block {
    height: 70vh;
    margin: 60px 0;
}

.image-content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d4c5b9;
}

.overlay-caption {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    max-width: 600px;
    text-align: center;
}

.overlay-caption h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c3e50;
}

.overlay-caption p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.insight-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.insight-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.insight-wrapper h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #2c3e50;
}

.insight-wrapper p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.process-visual {
    margin: 80px 0;
}

.split-layout {
    display: flex;
    min-height: 600px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d4c5b9;
}

.split-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c3e50;
    color: white;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 400;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-inline {
    padding: 100px 60px;
    background-color: #ecf0f1;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card p {
    font-size: 24px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    color: #7f8c8d;
}

.services-reveal {
    padding: 100px 60px;
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2c3e50;
}

.services-intro p {
    font-size: 20px;
    color: #555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-visual {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-color: #d4c5b9;
}

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.service-details p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #34495e;
}

.order-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
}

.order-section.hidden {
    display: none;
}

.order-container {
    max-width: 700px;
    margin: 0 auto;
}

.order-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
    color: #2c3e50;
    text-align: center;
}

.selected-service-display {
    font-size: 18px;
    margin-bottom: 40px;
    text-align: center;
    color: #555;
}

.order-form {
    background-color: white;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #e74c3c;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.content-page {
    margin-top: 80px;
    padding: 80px 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #2c3e50;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #2c3e50;
}

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

.content-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.contact-info {
    margin-top: 40px;
}

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

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    flex: 1 1 calc(50% - 20px);
    background-color: #f8f9fa;
    padding: 40px;
    min-width: 300px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.service-item .price {
    font-size: 20px;
    font-weight: 600;
    color: #e74c3c;
}

img {
    object-fit: cover;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text-layer {
        left: 30px;
        right: 30px;
    }

    .hero-text-layer h1 {
        font-size: 42px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .service-item {
        flex: 1 1 100%;
    }

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