/* Reset and Base Styles */
* {
    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: #334155;
    background-color: #f8fafc;
}

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

/* Header */
.header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    flex-shrink: 0;
}

.brand-name h1 {
    font-size: 28px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
}

.brand-name p {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #cbd5e1;
    line-height: 1.6;
    text-align: left;
}

.cta-button {
    display: inline-block;
    background-color: #DC2626;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

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

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Overview Section */
.overview {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.overview h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #334155;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.overview-item {
    padding: 32px 24px;
}

.overview-item .icon {
    margin-bottom: 20px;
}

.overview-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #334155;
}

.overview-item p {
    color: #64748b;
    font-size: 16px;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #334155;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #64748b;
}

.content-text ul {
    list-style: none;
}

.content-text li {
    padding: 8px 0;
    font-size: 16px;
    color: #64748b;
    position: relative;
    padding-left: 24px;
}

.content-text li::before {
    content: "•";
    color: #DC2626;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.content-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.benefits h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #334155;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.benefit-item {
    padding: 32px 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #DC2626;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #334155;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Programs Section */
.programs {
    padding: 80px 0;
    background-color: #f8fafc;
    text-align: center;
}

.programs h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #334155;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.program-card {
    background-color: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #334155;
}

.program-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.program-details span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.program-details .duration {
    background-color: #84CC16;
    color: white;
}

.program-details .format {
    background-color: #e2e8f0;
    color: #334155;
}

.program-details .price {
    background-color: #DC2626;
    color: white;
    font-weight: 600;
}

.program-cta {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    transition: background-color 0.2s ease;
}

.program-cta[href^="tel:"] {
    background-color: #DC2626;
    color: white;
}

.program-cta[href^="tel:"]:hover {
    background-color: #b91c1c;
}

.program-cta[href^="mailto:"] {
    background-color: #334155;
    color: white;
}

.program-cta[href^="mailto:"]:hover {
    background-color: #475569;
}

.contact-form img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #334155;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 20px;
    text-align: center;
}

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

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.why-choose h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #334155;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #334155;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #334155;
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 12px;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    color: #cbd5e1;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #334155;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #334155;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #64748b;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item a {
    color: #DC2626;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.contact-item a:hover {
    color: #b91c1c;
}

.contact-item span {
    color: #64748b;
    font-size: 16px;
}

/* Footer */
.footer {
    background-color: #334155;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 20px;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container,
    .footer-content,
    .content-split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h2,
    .hero-content p {
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-image img {
        height: 220px;
    }
    
    .overview-grid,
    .benefits-grid,
    .programs-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}