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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fefefe;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: 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-buttons {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #c44569;
}

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

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

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

.ad-label {
    background: #f39c12;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f4e4e9;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 60px;
    border-radius: 8px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 22px;
}

.intro-cards {
    padding: 80px 0;
    background: #fff;
}

.card-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.info-card {
    flex: 1;
    background: #fef5f7;
    padding: 40px;
    border-radius: 8px;
}

.info-card h2 {
    font-size: 32px;
    color: #c44569;
    margin-bottom: 20px;
}

.info-card p {
    font-size: 18px;
    line-height: 1.8;
}

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

.story-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.problem-section {
    padding: 80px 0;
    background: #fff5e6;
}

.problem-card {
    background: white;
    padding: 50px;
    border-radius: 8px;
    border-left: 6px solid #e74c3c;
}

.problem-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.problem-card p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.solution-section {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    flex: 1;
    min-width: 300px;
    background: #fefefe;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f4e4e9;
}

.feature-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #c44569;
}

.feature-card p {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.7;
}

.trust-section {
    padding: 80px 0;
    background: #fef5f7;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #c44569;
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #c44569;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #c44569;
    font-size: 14px;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fefefe;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.service-content {
    padding: 30px;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #c44569;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #a83753;
}

.form-section {
    padding: 80px 0;
    background: #fef5f7;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #c44569;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.final-cta {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
}

.disclaimer-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c44569;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

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

.thanks-container h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 20px;
    margin-bottom: 15px;
}

.legal-page {
    padding: 80px 0;
}

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

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

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

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.contact-info {
    background: #fef5f7;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #c44569;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.about-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #c44569;
}

.about-page p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0;
    background-color: #f4e4e9;
}

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

.services-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .card-grid,
    .card-grid-three,
    .testimonial-grid,
    .services-grid {
        flex-direction: column;
    }

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