* {
    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: #000000;
    background-color: #FFFFFF;
}

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

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #c5e3bd 0%, #f5f5f5 100%);
    padding: 80px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333333;
    line-height: 1.5;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #f5831b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-item strong {
    display: block;
    color: #f5831b;
    margin-bottom: 8px;
    font-size: 20px;
}

.benefit-item p {
    font-size: 15px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #f5831b;
    color: #FFFFFF;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #e06f0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(245, 131, 27, 0.3);
}

/* ===== HERO DECORATIONS ===== */
.hero-cat {
    position: absolute;
    max-width: 160px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.hero-cat--yellow {
    top: 20%;
    left: 120px;
    transform: translateY(-50%);
}

.hero-cat--orange {
    bottom: 20%;
    right: 120px;
    transform: translateY(50%);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.section-header p {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.about-content p {
    margin-bottom: 20px;
}

/* ===== PROGRAMS SECTION ===== */
.programs {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.program-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #c5e3bd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.program-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f5831b;
    margin-bottom: 15px;
}

.program-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

/* ===== LEARNING PROCESS SECTION ===== */
.learning-process {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
}

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

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.step p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

/* ===== SUPPORT SECTION ===== */
.support {
    padding: 80px 20px;
    background: linear-gradient(135deg, #c5e3bd 0%, rgba(197, 227, 189, 0.8) 100%);
}

.support-content {
    max-width: 1200px;
    margin: 0 auto;
}

.support h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    text-align: center;
}

.support-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}

.support-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #f5831b;
}

.support-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f5831b;
    margin-bottom: 12px;
}

.support-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.6;
}

/* ===== HOW TO JOIN SECTION ===== */
.how-to-join {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.join-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.join-step {
    text-align: center;
    position: relative;
}

.join-step::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #ffde00;
    top: 30px;
    right: -50%;
    display: none;
}

.join-step:last-child::after {
    display: none;
}

@media (min-width: 768px) {
    .join-step::after {
        display: block;
    }
}

.join-number {
    width: 70px;
    height: 70px;
    background-color: #f5831b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 auto 20px;
}

.join-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
}

.join-step p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.join-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== CONTACTS SECTION ===== */
.contacts {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contacts h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 18px;
    font-weight: 600;
    color: #f5831b;
}

.contact-item a {
    color: #f5831b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e06f0f;
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #c5e3bd;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .support-items {
        grid-template-columns: 1fr;
    }

    .join-steps {
        grid-template-columns: 1fr;
    }

    .join-step::after {
        display: none !important;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .hero-cat {
        max-width: 100px;
    }

    .hero-cat--yellow {
        top: 20px;
        left: 10px;
        transform: none;
    }

    .hero-cat--orange {
        bottom: 20px;
        right: 10px;
        transform: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}