* {
    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: #1f2937;
    background-color: #ffffff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    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;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

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

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1f2937;
}

.ad-disclosure {
    font-size: 12px;
    color: #9ca3af;
    padding: 4px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
}

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

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

.hero-image {
    flex: 1;
    background-color: #d1d5db;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: #111827;
}

/* Intro Cards */
.intro-cards {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #111827;
}

.info-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Featured Courses */
.featured-courses {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.featured-courses h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

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

.course-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.course-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d1d5db;
}

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

.course-content {
    padding: 28px;
}

.course-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111827;
}

.course-content p {
    color: #4b5563;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.course-meta span {
    font-size: 14px;
    padding: 6px 12px;
    background-color: #f3f4f6;
    color: #374151;
    border-radius: 6px;
}

.course-cta {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.course-cta:hover {
    background-color: #111827;
}

/* Approach Section */
.approach-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.approach-content {
    flex: 1;
    min-width: 320px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.approach-content p {
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.approach-visual {
    flex: 1;
    min-width: 320px;
    background-color: #d1d5db;
}

.approach-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Enrollment Section */
.enrollment-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.enrollment-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.enrollment-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
    text-align: center;
}

.enrollment-card > p {
    color: #4b5563;
    margin-bottom: 32px;
    text-align: center;
}

.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: #374151;
    font-size: 15px;
}

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

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

.btn-submit {
    padding: 16px 32px;
    background-color: #1f2937;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

/* Testimonial Section */
.testimonial-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.testimonial-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.testimonial-card p {
    color: #374151;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
    font-style: normal;
}

/* Footer */
.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    padding: 24px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Services Page */
.page-header {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.page-header p {
    font-size: 18px;
    color: #4b5563;
}

.services-showcase {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.service-image-block {
    flex: 1;
    min-width: 320px;
    background-color: #d1d5db;
}

.service-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.service-details {
    flex: 1;
    min-width: 320px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.service-details > p {
    color: #4b5563;
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.7;
}

.service-includes {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-includes li {
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-meta-info {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.duration-tag,
.level-tag {
    font-size: 14px;
    padding: 6px 12px;
    background-color: #f3f4f6;
    color: #374151;
    border-radius: 6px;
    font-weight: 500;
}

.pricing-block {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
}

.enroll-link {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.enroll-link:hover {
    background-color: #111827;
}

.enrollment-cta {
    padding: 80px 20px;
    background-color: #f9fafb;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #111827;
}

.cta-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: #111827;
}

/* About Page */
.about-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    color: #111827;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.story-text {
    flex: 1;
    min-width: 320px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.story-text p {
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
    min-width: 320px;
    background-color: #d1d5db;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.philosophy-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #111827;
}

.philosophy-item p {
    color: #4b5563;
    line-height: 1.7;
}

.values-visual {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.value-block {
    flex: 1;
    min-width: 320px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.value-block img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d1d5db;
}

.value-block h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #111827;
}

.value-block p {
    color: #4b5563;
    padding: 0 24px 24px;
    line-height: 1.7;
}

.commitment-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.commitment-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
    text-align: center;
    color: #111827;
}

.commitment-text {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-text p {
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
    color: #111827;
}

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

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

.instructor-card {
    flex: 0 1 300px;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.instructor-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #d1d5db;
}

.instructor-card h3 {
    font-size: 22px;
    margin: 24px 20px 8px;
    color: #111827;
}

.instructor-card .role {
    color: #6b7280;
    font-size: 15px;
    margin: 0 20px 16px;
    font-weight: 600;
}

.instructor-card p {
    color: #4b5563;
    padding: 0 20px 24px;
    line-height: 1.6;
    font-size: 15px;
}

.cta-about {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.cta-box p {
    color: #4b5563;
    margin-bottom: 32px;
    font-size: 17px;
}

/* Contact Page */
.contact-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.contact-hero p {
    font-size: 18px;
    color: #4b5563;
}

.contact-main {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #111827;
}

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

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.info-item p {
    color: #4b5563;
    line-height: 1.7;
}

.info-note {
    font-size: 15px;
    color: #6b7280;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    min-width: 320px;
    background-color: #d1d5db;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.inquiry-guidance {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.inquiry-guidance h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

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

.guidance-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.guidance-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.guidance-card p {
    color: #4b5563;
    line-height: 1.7;
}

.enrollment-reminder {
    padding: 80px 20px;
    background-color: #ffffff;
}

.reminder-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.reminder-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.reminder-box p {
    color: #4b5563;
    margin-bottom: 32px;
    font-size: 17px;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 80px 20px;
    background-color: #f9fafb;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 48px;
}

.next-steps {
    text-align: left;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
    color: #111827;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f2937;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111827;
}

.step-content p {
    color: #4b5563;
    line-height: 1.7;
}

.selected-course-info {
    margin-bottom: 32px;
    padding: 20px;
    background-color: #f3f4f6;
    border-radius: 8px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: #1f2937;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #111827;
}

.btn-secondary {
    background-color: transparent;
    color: #1f2937;
    border: 1px solid #1f2937;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.additional-resources {
    padding: 80px 20px;
    background-color: #ffffff;
}

.additional-resources h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: #111827;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.resource-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.last-updated {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 40px;
}

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

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

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

.legal-content p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.legal-content ul li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-content a {
    color: #1f2937;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #111827;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 32px;
    }

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

    .nav-links {
        gap: 16px;
    }

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

    .approach-layout,
    .story-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
    }

    .pricing-block {
        flex-direction: column;
        align-items: flex-start;
    }

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