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

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

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

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4789;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links 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;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

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

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

    .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 {
        flex-direction: column;
    }

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

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