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

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

.ad-disclosure {
    background-color: #f5f5f5;
    text-align: center;
    padding: 0.8rem;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b4789;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
}

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

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

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

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

.hero-card {
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #d4a5d4;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 600px;
}

.intro-section {
    padding: 4rem 0;
}

.intro-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.intro-card h2 {
    font-size: 2rem;
    color: #8b4789;
    margin-bottom: 1.5rem;
}

.intro-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.services-grid {
    padding: 4rem 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8b4789;
    margin-bottom: 3rem;
}

.cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card-image {
    height: 250px;
    overflow: hidden;
    background-color: #e8d5e8;
}

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

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b4789;
    margin: 1rem 0;
}

.btn-select {
    width: 100%;
    padding: 0.8rem;
    background-color: #8b4789;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #6f3a6d;
}

.process-section {
    padding: 4rem 0;
}

.process-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.process-card img {
    width: 45%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8d5e8;
}

.process-content {
    flex: 1;
}

.process-content h2 {
    font-size: 2rem;
    color: #8b4789;
    margin-bottom: 1.5rem;
}

.process-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.link-cta {
    display: inline-block;
    margin-top: 1rem;
    color: #8b4789;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #8b4789;
    padding-bottom: 0.2rem;
    transition: all 0.3s;
}

.link-cta:hover {
    color: #6f3a6d;
    border-color: #6f3a6d;
}

.testimonials-section {
    padding: 4rem 0;
    background-color: #f5f0f5;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b4789;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-card p {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #8b4789;
    font-style: normal;
}

.order-section {
    padding: 4rem 0;
    background-color: #fff;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fafafa;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 2rem;
    color: #8b4789;
    margin-bottom: 1rem;
}

.form-card > p {
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #8b4789;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 3rem 0;
    background-color: #f5f0f5;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    color: #8b4789;
}

.footer-column p {
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: #8b4789;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

.content-section {
    padding: 4rem 0;
}

.content-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.content-card h1 {
    font-size: 2.5rem;
    color: #8b4789;
    margin-bottom: 2rem;
}

.content-card h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h3 {
    font-size: 1.4rem;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.content-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-card ul,
.content-card ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.content-card li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background-color: #f5f0f5;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #8b4789;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 2rem 0;
    border-radius: 8px;
    background-color: #e8d5e8;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background-color: #f5f0f5;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-item-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8d5e8;
}

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

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

.service-item-content h3 {
    color: #8b4789;
    margin-top: 0;
}

.service-item-content .price {
    color: #8b4789;
    font-weight: 700;
    margin-top: 1rem;
}

.thanks-card {
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-card h1 {
    color: #8b4789;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.thanks-card .btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: #8b4789;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-card .btn-home:hover {
    background-color: #6f3a6d;
}

.editorial-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-flow {
    background-color: #fff;
}

.hero-story {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 550px;
    margin-bottom: 4rem;
    background-color: #e8d5e8;
}

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

.story-section {
    margin-bottom: 4rem;
}

.story-section h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #3c3c3c;
}

.inline-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 450px;
    margin: 3rem 0;
    background-color: #e8d5e8;
}

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

.centered-cta {
    text-align: center;
}

.service-cards-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.service-cards-inline .service-card {
    width: 320px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-cards-inline .service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e8d5e8;
}

.service-cards-inline .service-card h3 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2c2c2c;
}

.service-cards-inline .service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.service-cards-inline .service-card .price {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b4789;
}

.cta-button {
    margin: 1rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.9rem;
    background-color: #8b4789;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #6f3a6d;
    transform: translateY(-2px);
}

.service-list-flow {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2.5rem;
}

.service-list-flow .service-item {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.service-list-flow .service-item.reverse {
    flex-direction: row-reverse;
}

.service-list-flow .service-item img {
    width: 350px;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background-color: #e8d5e8;
}

.service-list-flow .service-item .service-content {
    flex: 1;
}

.service-list-flow .service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-list-flow .service-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #3c3c3c;
}

.service-list-flow .service-item .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b4789;
    margin: 1rem 0;
}

.trust-section {
    background-color: #fafafa;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.testimonial-inline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-inline blockquote {
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #8b4789;
    border-radius: 4px;
}

.testimonial-inline blockquote p {
    font-style: italic;
    color: #3c3c3c;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-weight: 600;
    color: #8b4789;
}

.form-section {
    background-color: #f5f0f5;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.order-form {
    margin-top: 2rem;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background-color: #8b4789;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #6f3a6d;
    transform: translateY(-2px);
}

.main-footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #8b4789;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #8b4789;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: #8b4789;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #6f3a6d;
}

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

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

.nav-menu a:hover {
    color: #8b4789;
}

@media (max-width: 768px) {
    .editorial-content {
        padding: 0 1.5rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .hero-story {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .service-cards-inline {
        flex-direction: column;
        align-items: center;
    }

    .service-list-flow .service-item,
    .service-list-flow .service-item.reverse {
        flex-direction: column;
    }

    .service-list-flow .service-item img {
        width: 100%;
        height: 250px;
    }

    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .process-card {
        flex-direction: column;
    }

    .process-card img {
        width: 100%;
    }

    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-container,
    .footer-content {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item-image {
        width: 100%;
        height: 200px;
    }
}
