* {
    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;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    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: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

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

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

.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
}

.main-nav {
    display: flex;
    gap: 35px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 60px;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 80px 60px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    color: white;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-primary {
    padding: 16px 40px;
    background-color: #fff;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #5a67d8;
}

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

.intro-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.card-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.card-wrapper p {
    font-size: 18px;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    margin-bottom: 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.feature-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 28px;
}

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

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

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

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #718096;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #667eea;
    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: #5568d3;
}

.form-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    padding: 70px 60px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.form-container h2 {
    color: white;
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255,255,255,0.95);
}

.form-group input:focus,
.form-group select:focus {
    outline: 3px solid rgba(255,255,255,0.5);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: white;
    color: #f5576c;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.testimonials-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.testimonial p {
    font-size: 16px;
    color: #2d3748;
    margin-bottom: 16px;
    font-style: italic;
    line-height: 1.7;
}

.author {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

.cta-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 70px 60px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.cta-card p {
    color: white;
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-secondary {
    padding: 16px 40px;
    background-color: white;
    color: #667eea;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-card {
    background-color: #f7fafc;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-bottom: 50px;
}

.disclaimer-card p {
    font-size: 13px;
    color: #718096;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #1a202c;
    color: white;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

.footer-section p {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.7;
}

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

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

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

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #718096;
}

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

    .feature-card {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }
}

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

.thanks-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-width: 700px;
}

.thanks-card h1 {
    font-size: 42px;
    color: #4CAF50;
    margin-bottom: 24px;
}

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

.thanks-card .service-info {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid #4CAF50;
}

.thanks-card .service-info strong {
    color: #2d3748;
    font-size: 20px;
}

.btn-home {
    margin-top: 30px;
    padding: 16px 40px;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-home:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-card h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a202c;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #667eea;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.services-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-header p {
    font-size: 20px;
    color: #718096;
}

.about-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-hero {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-hero p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.about-content {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

.about-values {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

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

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