* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 1px;
}

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

header {
    background: #2d6c90;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

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

main {
    margin-top: 75px;
}

/* Smooth scrolling and offset for fixed header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.hero {
    background: #1E1E1E;
    color: #eceded;
    padding: 100px 0;
    text-align: left;
}

.hero-content {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Typed.js styling */
#typed-strings {
    display: none;
}

#typed {
    color: #f47a23;
    font-weight: bold;
    
}

.hero-description {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    background: #ea580c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #dc2626;
}

.about, .register, .programs, .testimonials, .support, .contact {
    padding: 80px 0;
}

.about {
    background: #eceded;
}

.about h2, .register h2, .programs h2, .testimonials h2, .support h2, .contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2d6c90;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.about-photos {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.about-photo {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    object-fit: cover;
}

.register {
    background: white;
    text-align: center;
}

.register h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.register p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.register-button {
    background: #b8501a;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.register-button:hover {
    background: #f9c86a;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.program-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: #b8501a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
}

.program-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #2d6c90;
    border-radius: 2px;
}

.program-card a {
    color: #2d6c90;
    text-decoration: underline;
}

.program-card a:hover {
    color: #b8501a;
}

.programs {
    background: #eceded;
}

.programs p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.testimonials {
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(145deg, #f8fafc, #eceded);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: left;
    border-left: 4px solid #b8501a;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    text-align: right;
    color: #2d6c90;
    font-size: 0.9rem;
}

.support {
    background: #eceded;
    text-align: center;
}

.support p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.support-button {
    background: #b8501a;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.support-button:hover {
    background: #f9c86a;
}

.contact {
    background: white;
    text-align: center;
}

.contact p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

footer {
    background: #2d6c90;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 1070px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #2d6c90;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0.25rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust scroll padding for mobile */
    html {
        scroll-padding-top: 120px;
    }
    
    /* Increase main margin for mobile if nav wraps */
    main {
        margin-top: 75px;
    }

    /* About section mobile styles */
    .about-photos {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .about-photo {
        width: 90%;
        max-width: 350px;
    }
}