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

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

.ad-disclosure {
    background: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    padding: 8px 0;
    font-size: 12px;
    text-align: center;
    color: #666;
}

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #d4968d;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-visual {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.cta-primary {
    display: inline-block;
    padding: 16px 48px;
    background: #d4968d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-primary:hover {
    background: #c27f75;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 150, 141, 0.3);
}

.section-story {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.story-content.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 400;
}

.story-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-visual {
    flex: 1;
    position: relative;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.insight-section {
    background: linear-gradient(135deg, #f5e6e3 0%, #e8d5d1 100%);
    padding: 80px 5%;
    margin: 80px 0;
}

.insight-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.insight-wrapper h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

.insight-wrapper p {
    font-size: 18px;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

.services-showcase {
    padding: 100px 5%;
    background: #fff;
}

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

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

.services-intro p {
    font-size: 17px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d4968d;
}

.service-card.selected {
    border-color: #d4968d;
    background: #fff7f5;
}

.service-image {
    width: 100%;
    height: 280px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    color: #d4968d;
    font-weight: 600;
}

.testimonial-flow {
    padding: 100px 5%;
    background: #f9f9f9;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-container h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 400;
}

.testimonial-item {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #d4968d;
}

.testimonial-item p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #888;
    font-style: normal;
}

.form-section {
    padding: 100px 5%;
    background: #fff;
}

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

.form-wrapper h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.order-form {
    background: #fafafa;
    padding: 50px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #d4968d;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c27f75;
    transform: translateY(-2px);
}

.selected-service-display {
    background: #fff7f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #d4968d;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    font-size: 16px;
    color: #444;
}

.selected-service-display strong {
    color: #d4968d;
}

footer {
    background: #2c2c2c;
    color: #aaa;
    padding: 60px 5% 30px;
}

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

.footer-column h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #d4968d;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.references {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.references h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.references a {
    color: #d4968d;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.disclaimer {
    background: #1a1a1a;
    padding: 30px;
    margin-top: 40px;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 13px;
}

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

.cookie-banner.active {
    display: flex;
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-text a {
    color: #d4968d;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

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

.accept-btn:hover {
    background: #c27f75;
}

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

.reject-btn:hover {
    background: #666;
}

.legal-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c2c2c;
    font-weight: 400;
}

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

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

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

.legal-page li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.about-hero {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5e6e3 0%, #e8d5d1 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 400;
}

.about-hero p {
    font-size: 19px;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c2c2c;
    font-weight: 400;
}

.about-section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-visual-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-visual-section img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    height: 400px;
    object-fit: cover;
    background: #e8e8e8;
}

.about-visual-text {
    flex: 1;
}

.contact-page {
    padding: 100px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 400;
}

.contact-header p {
    font-size: 17px;
    color: #666;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

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

.thanks-page {
    padding: 150px 5%;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #d4968d;
    font-weight: 400;
}

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

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #d4968d;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-link:hover {
    background: #c27f75;
    transform: translateY(-2px);
}

.citation {
    color: #d4968d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.citation:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 38px;
    }

    .story-content {
        flex-direction: column;
        gap: 40px;
    }

    .story-content.reverse {
        flex-direction: column;
    }

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

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

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

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

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

    .about-visual-section {
        flex-direction: column;
    }

    .about-visual-section img {
        max-width: 100%;
    }
}
