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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    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-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #3182ce;
    color: white;
}

.btn-accept:hover {
    background-color: #2c5aa0;
}

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

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

.header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    background-color: #edf2f7;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.nav a:hover {
    color: #2b6cb0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #2d3748;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav.show {
    display: flex;
}

.mobile-nav a {
    padding: 12px 0;
    color: #4a5568;
    text-decoration: none;
    border-bottom: 1px solid #e2e8f0;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin: 30px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image {
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 35, 50, 0.9), rgba(26, 35, 50, 0.4));
    display: flex;
    align-items: center;
}

.hero-text-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
}

.hero-text-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background-color: #3182ce;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 130, 206, 0.3);
}

.intro-cards {
    padding: 80px 20px;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.info-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 12px;
}

.info-card p {
    color: #718096;
    line-height: 1.6;
}

.services-section {
    padding: 80px 20px;
    background-color: #edf2f7;
}

.section-header-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.section-header-card h2 {
    font-size: 38px;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-header-card p {
    font-size: 18px;
    color: #718096;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 3px solid #3182ce;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #3182ce;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 16px;
}

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

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

.service-features li {
    padding: 8px 0;
    color: #718096;
    position: relative;
    padding-left: 24px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

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

.btn-select:hover {
    background-color: #2c5aa0;
}

.form-section {
    padding: 80px 20px;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 12px;
}

.form-header p {
    color: #718096;
    font-size: 16px;
}

.selected-service-display {
    background-color: #ebf8ff;
    border: 2px solid #3182ce;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-display p {
    color: #2c5aa0;
    font-weight: 600;
    margin: 0;
}

.selected-service-display.hidden {
    display: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.btn-submit {
    padding: 16px;
    background-color: #3182ce;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #2c5aa0;
}

.btn-submit:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

.trust-section {
    padding: 80px 20px;
    background-color: #1a202c;
}

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

.trust-card {
    flex: 1;
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 12px;
}

.trust-card p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    margin-bottom: 16px;
    color: white;
}

.footer-col p {
    color: #a0aec0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    color: #a0aec0;
    margin-bottom: 10px;
}

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

.page-header {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5aa0 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

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

.services-detail {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    height: 500px;
}

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

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

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

.price-tag {
    display: inline-block;
    background-color: #ebf8ff;
    color: #2b6cb0;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

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

.service-detail-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 18px;
}

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 20px;
    color: #a0aec0;
    margin-bottom: 40px;
}

.about-section {
    padding: 80px 20px;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    color: #2b6cb0;
    margin-bottom: 16px;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-content h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2b6cb0;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-content h1 {
    font-size: 42px;
    color: #1a202c;
    margin-bottom: 30px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #4a5568;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

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

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

.thanks-card p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-service {
    background-color: #ebf8ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

@media (max-width: 968px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        min-width: 100%;
        height: 400px;
    }

    .service-detail-content {
        padding: 40px 30px;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text-card {
        padding: 30px;
    }

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

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

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

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

    .form-card {
        padding: 30px 20px;
    }

    .contact-content,
    .legal-content {
        padding: 40px 30px;
    }

    .thanks-card {
        padding: 40px 30px;
    }

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