@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');
body{
    background-color: #1a1a1a;
    color: white;
}
h1,h2,h3,h4,h5,h6 {
    font-family: "Fjalla One", serif;
    font-weight: 400;
    font-style: normal;
}

.hero-section {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 0;
}

.hero-section h1{
    font-size: 60px;
}

.hero-section h3{
    font-size: 32px;
}

.hero-section p{
    font-size: 18px;
}

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

.stats-item {
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 1rem;
}

.stats-item:last-child {
    border-right: none;
}

.highlight-text {
    color: #00ffbb;
}

.hero-image {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

.partner-logos {
    background-color: #242424;
    padding: 1.5rem 0;
}

.partner-logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}
.program-section {
    background-color: #242424;
    padding: 2rem 0;
}
.program-card {
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
text-align: center;
}

@media (min-width: 320px) and (max-width: 440px) {

    .hero-section {
        background-color: #1a1a1a;
        color: white;
        padding: 2rem 1rem;
    }

    .hero-section h1{
        font-size: 32px;
    }
    
    .hero-section h3{
        font-size: 20px;
    }
    
    .hero-section p{
        font-size: 15px;
    }

}