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

:root {
    --primary-color: #6B4E71;
    --secondary-color: #8B7F8B;
    --accent-color: #A67B9F;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F8F6F7;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    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;
}

.cookie-buttons {
    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 ease;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: var(--accent-color);
}

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

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

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
}

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 12px;
}

.hero-section {
    margin-top: -1px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(107, 78, 113, 0.85), rgba(166, 123, 159, 0.75));
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: var(--bg-white);
    max-width: 700px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
}

.intro-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.intro-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.intro-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.intro-card p {
    color: var(--text-light);
    font-size: 15px;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-light);
}

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

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-info p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: var(--accent-color);
}

.order-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.order-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.order-form-container {
    flex: 1.5;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.order-form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent-color);
}

.order-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 15px;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

.about-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.about-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--bg-white);
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.btn-link {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-link:hover {
    background: var(--accent-color);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--secondary-color);
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

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

    .hero-text p {
        font-size: 16px;
    }

    .main-nav {
        display: none;
    }

    .services-grid,
    .intro-grid,
    .testimonials-grid {
        flex-direction: column;
    }

    .order-wrapper,
    .about-content {
        flex-direction: column;
    }

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

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

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

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-content .btn-link {
    margin-top: 30px;
}

.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-story {
    padding: 80px 0;
}

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

.story-content:nth-child(even) {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.services-hero {
    padding: 80px 0 40px;
    background: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-main {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: var(--bg-light);
}

.service-detail-info {
    flex: 1;
}

.service-detail-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-info .price-tag {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-detail-info ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail-info ul li {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}