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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    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;
    margin: 0;
}

.cookie-content a {
    color: #4ecdc4;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4ecdc4;
    color: #1a1a2e;
}

.btn-accept:hover {
    background-color: #3db8af;
}

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

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px 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;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

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

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a2e;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(78, 205, 196, 0.3));
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    color: #ffffff;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #4ecdc4;
    color: #1a1a2e;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3db8af;
    transform: translateY(-2px);
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-8px);
}

.intro-card .card-icon {
    background-color: #e8f4f3;
}

.intro-card .card-icon img,
.intro-card > div img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.intro-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a1a2e;
}

.intro-card p {
    margin: 0 24px 24px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.section-header-offset p {
    font-size: 18px;
    color: #5a6c7d;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image {
    background-color: #f0f4f8;
}

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

.service-content {
    padding: 32px;
}

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

.service-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background-color: #2d2d44;
}

.enrollment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f3 100%);
}

.enrollment-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.enrollment-info {
    flex: 1;
}

.enrollment-info h2 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.enrollment-info p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
    line-height: 1.7;
}

.info-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2c3e50;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background-color: #4ecdc4;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.enrollment-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    padding: 16px 32px;
    background-color: #4ecdc4;
    color: #1a1a2e;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #3db8af;
    transform: translateY(-2px);
}

.why-choose {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.why-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.inline-link {
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #3db8af;
    text-decoration: underline;
}

.why-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.disclaimer-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 32px;
    border-radius: 8px;
}

.disclaimer-box h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.disclaimer-box p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4ecdc4;
}

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

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

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

.footer-col ul li a {
    color: #b8c5d6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4ecdc4;
}

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

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

.contact-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.contact-header h1 {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #5a6c7d;
}

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

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

.contact-card h3 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

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

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

.about-hero {
    text-align: center;
    margin-bottom: 80px;
}

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

.about-hero p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.about-text {
    flex: 1.2;
}

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

.about-text p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

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

.value-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

.services-header p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail {
    display: flex;
    gap: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    align-items: center;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f4f3;
}

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

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

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

.service-detail-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: #4ecdc4;
    margin-bottom: 24px;
}

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

.service-detail-features li {
    padding: 8px 0;
    color: #2c3e50;
    font-size: 16px;
}

.service-detail-features li:before {
    content: "→ ";
    color: #4ecdc4;
    font-weight: 700;
}

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

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

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

.legal-content h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

.thanks-page {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f3 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4ecdc4;
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
}

.thanks-content h1 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-service {
    background-color: #e8f4f3;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    font-size: 18px;
    color: #1a1a2e;
    font-weight: 600;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-actions a {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-actions .btn-primary {
    background-color: #4ecdc4;
    color: #1a1a2e;
}

.thanks-actions .btn-primary:hover {
    background-color: #3db8af;
}

.thanks-actions .btn-secondary {
    background-color: transparent;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.thanks-actions .btn-secondary:hover {
    background-color: #e8f4f3;
}

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

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

    .intro-grid,
    .services-cards {
        flex-direction: column;
    }

    .enrollment-layout,
    .why-content,
    .about-content,
    .service-detail {
        flex-direction: column;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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