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

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

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

.ad-disclosure {
    background-color: #fff3cd;
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffc107;
}

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand a {
    font-size: 26px;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #34495e;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.85), rgba(142, 68, 173, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.intro-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #555;
}

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service-btn {
    padding: 12px 25px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #c0392b;
    transform: scale(1.02);
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #c0392b;
    transform: scale(1.02);
}

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

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

.trust-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 10px;
}

.footer-bottom .disclaimer {
    font-size: 12px;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    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;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

.cookie-btn:hover {
    transform: scale(1.05);
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: white;
}

.page-header {
    background: linear-gradient(135deg, #e74c3c, #8e44ad);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

.about-story {
    padding: 80px 0;
    background-color: #ffffff;
}

.story-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

.story-card .card-image {
    width: 50%;
    height: 400px;
    border-radius: 12px;
    flex-shrink: 0;
}

.story-card .card-text {
    width: 50%;
}

.story-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-item {
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    width: calc(50% - 15px);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.cta-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.cta-card {
    background: linear-gradient(135deg, #e74c3c, #8e44ad);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image {
    width: 45%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    flex-shrink: 0;
    background-color: #ecf0f1;
}

.service-info {
    width: 55%;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    font-size: 16px;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.pricing-box .price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
}

.pricing-box .price-desc {
    font-size: 14px;
    color: #777;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

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

.contact-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    text-align: left;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.selected-service-info {
    margin: 30px 0;
}

.service-highlight {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.service-highlight h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.service-highlight p {
    font-size: 20px;
    color: #e74c3c;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 15px 35px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 15px 35px;
    background-color: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.update-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-content strong {
    color: #2c3e50;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .service-card {
        width: 100%;
    }

    .trust-card {
        width: 100%;
    }

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

    .story-card,
    .story-card.reverse {
        flex-direction: column;
    }

    .story-card .card-image,
    .story-card .card-text {
        width: 100%;
    }

    .value-item {
        width: 100%;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-image,
    .service-info {
        width: 100%;
    }

    .contact-card {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}