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

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.value-content,
.value-visual {
    flex: 1;
}

.value-content {
    padding: 80px 60px;
}

.value-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.value-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.value-visual {
    background: #e9ecef;
    overflow: hidden;
}

.value-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.programs-showcase {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.programs-showcase h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.program-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.program-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    width: 360px;
    transition: box-shadow 0.3s;
}

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

.program-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e9ecef;
}

.program-card h3 {
    font-size: 24px;
    margin: 20px 24px 12px;
    color: #1a252f;
}

.program-card p {
    color: #546e7a;
    margin: 0 24px 20px;
    font-size: 16px;
}

.program-details {
    display: flex;
    justify-content: space-between;
    margin: 20px 24px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.duration {
    color: #7f8c8d;
    font-size: 14px;
}

.price {
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.select-program {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-program:hover {
    background: #2980b9;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    background: #ecf8f3;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.trust-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
}

.trust-points {
    list-style: none;
    margin-top: 32px;
}

.trust-points li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
    color: #2c3e50;
}

.trust-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.trust-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

.trust-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    width: 360px;
    border-left: 4px solid #3498db;
}

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

.author {
    display: block;
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 600;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-intro {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: #ffffff;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

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

label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: -12px;
}

input[type="text"],
input[type="email"],
select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
    outline: none;
    border-color: #3498db;
}

.submit-btn {
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 12px;
}

.submit-btn:hover {
    background: #229954;
}

.disclaimer {
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.disclaimer p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px 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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 16px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    opacity: 0.9;
}

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

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
}

.about-content {
    flex: 1;
    padding: 60px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.about-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

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

.values-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    background: #f8f9fa;
}

.values-split.reverse {
    flex-direction: row-reverse;
}

.values-content {
    flex: 1;
    padding: 60px;
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.values-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 24px;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    margin-top: 32px;
}

.values-list li {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.values-list strong {
    color: #2c3e50;
}

.values-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

.values-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-it-works {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.how-it-works h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a252f;
}

.process-grid {
    display: flex;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    width: 260px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a252f;
}

.process-step p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.team-intro {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
}

.team-intro p {
    font-size: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.business-model {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px;
    background: #ecf8f3;
    border-radius: 12px;
}

.business-model h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
}

.business-model p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-overview {
    max-width: 1400px;
    margin: 60px auto;
}

.service-detail {
    display: flex;
    margin-bottom: 60px;
}

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

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

.service-content h2 {
    font-size: 38px;
    margin-bottom: 12px;
    color: #1a252f;
}

.service-duration {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-content h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

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

.service-content ul li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.service-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 1;
}

.service-cta {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #2980b9;
}

.service-image {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

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

.services-faq {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.services-faq h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.faq-item {
    width: 560px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.faq-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

.contact-info {
    flex: 1;
    padding: 60px;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a252f;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-block p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-questions {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.contact-questions h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a252f;
}

.contact-questions > p {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 60px;
}

.contact-questions a {
    color: #3498db;
    text-decoration: underline;
}

.questions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.question-item {
    width: 560px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
}

.question-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
}

.question-item p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-container {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    min-height: 500px;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.next-steps {
    margin: 40px 0;
    padding: 32px;
    background: #ecf8f3;
    border-radius: 12px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a252f;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 18px;
    color: #2c3e50;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.back-home {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 20px;
}

.back-home:hover {
    background: #2980b9;
}

.thanks-visual {
    flex: 1;
    background: #e9ecef;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #1a252f;
}

.last-updated {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 24px;
    margin: 32px 0 16px;
    color: #34495e;
}

.legal-page p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page ul li {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .hero-split,
    .value-split,
    .trust-split,
    .form-split,
    .about-split,
    .values-split,
    .service-detail,
    .contact-split,
    .thanks-container {
        flex-direction: column;
    }

    .hero-content,
    .value-content,
    .trust-content,
    .form-intro,
    .form-container,
    .about-content,
    .values-content,
    .service-content,
    .contact-info,
    .thanks-content {
        padding: 40px 24px;
    }

    .hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }
}