* {
    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: #2D3748;
    background-color: #FFFFFF;
}

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

.ad-notice {
    background-color: #FFF5F5;
    color: #C53030;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #FED7D7;
}

.navbar {
    background-color: #1A202C;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-card {
    display: flex;
    min-height: 600px;
    background-color: #F7FAFC;
}

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

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1A202C;
}

.hero-content p {
    font-size: 20px;
    color: #4A5568;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #3182CE;
    color: #FFFFFF;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
    align-self: flex-start;
}

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

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

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

.feature-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    color: #3182CE;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A202C;
}

.feature-card p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.7;
}

.services-section {
    padding: 80px 0;
    background-color: #EDF2F7;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: #1A202C;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A202C;
}

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

.price {
    font-size: 28px;
    font-weight: 800;
    color: #2C5282;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background-color: #3182CE;
    color: #FFFFFF;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #2C5282;
    transform: translateY(-2px);
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1A202C;
}

.selected-service-display {
    font-size: 16px;
    color: #3182CE;
    font-weight: 600;
    margin-bottom: 24px;
}

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

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

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

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

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

.trust-section h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #1A202C;
}

.trust-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 36px 28px;
    border-radius: 12px;
}

.trust-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A202C;
}

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

.testimonials-section {
    padding: 80px 0;
    background-color: #1A202C;
    color: #FFFFFF;
}

.testimonials-section h2 {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #FFFFFF;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #2D3748;
    padding: 36px 28px;
    border-radius: 12px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #E2E8F0;
}

.testimonial-author {
    font-weight: 600;
    color: #90CDF4;
    font-size: 14px;
}

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #FFF5F5;
    border-left: 4px solid #FC8181;
    border-radius: 6px;
}

.disclaimer-card p {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.8;
}

.footer {
    background-color: #1A202C;
    color: #E2E8F0;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.footer-section p {
    font-size: 14px;
    color: #A0AEC0;
}

.footer-section a {
    color: #90CDF4;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2D3748;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #A0AEC0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2D3748;
    color: #FFFFFF;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    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;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90CDF4;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #38A169;
    color: #FFFFFF;
}

.cookie-btn.accept:hover {
    background-color: #2F855A;
    transform: translateY(-2px);
}

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

.cookie-btn.reject:hover {
    background-color: #4A5568;
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: #E2E8F0;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.content-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A202C;
}

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

.values-section,
.process-section,
.team-section {
    margin-bottom: 80px;
}

.values-section h2,
.process-section h2,
.team-section h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: #1A202C;
}

.values-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 32px 24px;
    border-radius: 12px;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1A202C;
}

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

.process-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 220px;
    background-color: #F7FAFC;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.process-number {
    font-size: 32px;
    font-weight: 800;
    color: #3182CE;
    margin-bottom: 12px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1A202C;
}

.process-card p {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
}

.team-intro {
    font-size: 17px;
    color: #4A5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.team-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 24px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #3182CE;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4A5568;
}

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

.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #FFFFFF;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A202C;
}

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

.contact-label {
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 4px;
    display: block;
    font-size: 14px;
}

.contact-value {
    color: #4A5568;
    font-size: 16px;
}

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

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

.legal-container h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1A202C;
}

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

.legal-container h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2D3748;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2D3748;
}

.legal-container p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

.thanks-card {
    background-color: #FFFFFF;
    padding: 64px 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1A202C;
}

.thanks-card p {
    font-size: 17px;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-service {
    background-color: #EBF8FF;
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-service strong {
    color: #2C5282;
}

.services-detail-section {
    padding: 80px 0;
}

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

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

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    min-height: 450px;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1A202C;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 800;
    color: #2C5282;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.service-features li {
    font-size: 15px;
    color: #4A5568;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

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

.contact-note {
    max-width: 800px;
    margin: 64px auto 0;
    background-color: #EBF8FF;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
}

.contact-note h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1A202C;
}

.contact-note p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
}

.contact-note a {
    color: #3182CE;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
    }

    .hero-content {
        padding: 40px 24px;
    }

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

    .hero-image {
        min-height: 300px;
    }

    .card-grid,
    .services-grid,
    .trust-cards,
    .testimonials-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

    .form-card {
        padding: 32px 24px;
    }

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

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

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