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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-nav {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    padding: 18px 0;
}

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

.nav-menu li a {
    display: block;
    padding: 20px 24px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    font-size: 15px;
}

.nav-menu li a:hover {
    background-color: #16213e;
    color: #00d4ff;
}

.hero-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    flex: 1 1 500px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-image {
    flex: 1 1 500px;
    position: relative;
    overflow: hidden;
    background-color: #4a5568;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #00d4ff;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.info-cards {
    background-color: #f7fafc;
    padding: 80px 0;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.info-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.card-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.info-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2d3748;
}

.info-card p {
    padding: 0 24px 24px;
    color: #4a5568;
    line-height: 1.7;
}

.storytelling-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.storytelling-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.story-image {
    flex: 1 1 380px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cbd5e0;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    flex: 1 1 400px;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.benefits-module {
    background-color: #edf2f7;
    padding: 90px 0;
}

.benefits-module h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 70px;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-header {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

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

.select-service-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.select-service-btn.selected {
    background-color: #48bb78;
}

.contact-form-module {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact-form-module h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2d3748;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

.selected-service-display {
    background-color: #edf2f7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
}

.selected-service-display p {
    margin-bottom: 8px;
    color: #2d3748;
}

.submit-btn {
    padding: 16px 32px;
    background-color: #00d4ff;
    color: #1a1a2e;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.trust-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 300px;
    max-width: 360px;
    background-color: #f7fafc;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #cbd5e0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d3748;
}

.disclaimer-section {
    background-color: #fffaf0;
    padding: 50px 0;
    border-top: 2px solid #fbd38d;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #744210;
    text-align: center;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 0;
}

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

.footer-column {
    flex: 1 1 220px;
}

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

.footer-column p {
    line-height: 1.7;
    color: #cbd5e0;
    font-size: 14px;
}

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

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

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

.footer-column ul li a:hover {
    color: #00d4ff;
}

.footer-bottom {
    background-color: #0f0f1e;
    padding: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
}

.cookie-btn.reject {
    background-color: #718096;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4a5568;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    background-color: #ffffff;
}

.content-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

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

.content-image {
    flex: 1 1 420px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-text {
    flex: 1 1 420px;
}

.content-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.content-text p {
    margin-bottom: 18px;
    line-height: 1.8;
    color: #4a5568;
    font-size: 16px;
}

.values-section {
    margin-top: 60px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.value-card {
    flex: 1 1 260px;
    max-width: 290px;
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2d3748;
}

.value-card p {
    line-height: 1.7;
    color: #4a5568;
    font-size: 15px;
}

.team-approach {
    margin-top: 60px;
    background-color: #edf2f7;
    padding: 50px 40px;
    border-radius: 12px;
}

.team-approach h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a202c;
}

.team-approach p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #4a5568;
    font-size: 16px;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
    padding: 40px;
    background-color: #f7fafc;
    border-radius: 12px;
}

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

.service-detail-image {
    flex: 1 1 380px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cbd5e0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1 1 400px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a5568;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 14px;
    color: #2d3748;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 26px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 20px;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #667eea;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

.service-cta:hover {
    background-color: #5a67d8;
    transform: translateY(-2px);
}

.services-cta-section {
    background-color: #edf2f7;
    padding: 70px 0;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-cta-section p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.contact-page-content {
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 70px;
}

.contact-info-section {
    flex: 1 1 380px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d3748;
    font-weight: 600;
}

.contact-info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.contact-info-note {
    background-color: #edf2f7;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info-note p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
}

.contact-visual {
    flex: 1 1 420px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-note-card {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.contact-note-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2d3748;
}

.contact-note-card p {
    line-height: 1.7;
    color: #4a5568;
}

.contact-additional-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
    text-align: center;
}

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

.faq-card {
    flex: 1 1 260px;
    max-width: 290px;
    background-color: #f7fafc;
    padding: 26px;
    border-radius: 10px;
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d3748;
}

.faq-card p {
    line-height: 1.7;
    color: #4a5568;
    font-size: 15px;
}

.thanks-page {
    background-color: #ffffff;
    min-height: 600px;
}

.thanks-content {
    text-align: center;
    padding: 60px 0;
}

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.thanks-service-info {
    margin-bottom: 50px;
}

.selected-service-box {
    background-color: #edf2f7;
    padding: 30px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
}

.selected-service-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.service-price-display {
    font-size: 26px;
    font-weight: 700;
    color: #667eea;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a202c;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 650px;
    margin: 0 auto 50px;
    text-align: left;
}

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

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #667eea;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3748;
}

.step-content p {
    color: #4a5568;
    line-height: 1.7;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}

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

.legal-page {
    background-color: #ffffff;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #2d3748;
}

.legal-content p {
    margin-bottom: 16px;
    color: #4a5568;
}

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

.legal-content ul li {
    margin-bottom: 10px;
    color: #4a5568;
}

.legal-content strong {
    color: #2d3748;
    font-weight: 600;
}

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-content {
        flex-direction: column;
    }

    .container,
    .container-narrow {
        padding: 50px 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}