* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;

}

body {
    background-color: #fdfdfd;
    color: #222;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar nav a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 0;
    background-color: linear-gradient(135deg, #f0f0f0, #fff);
}

header h1{
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    text-align: center;
}

.header p {
    font-style: 1.25rem;
    color: #555;
    text-align: center;
}

.hero img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    margin: 0;
}

.section {
    padding: 3rem 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.section h2{
    font-style: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color:#2c3e50 ;
}

.section p{
    font-style: 1rem;
    color:#444 ;
    text-align: center;
}

.learn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.learn-item {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s easde;
}

.learn-item:hover{
    transform: translateY(-5px);
}

.learn-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.cta {
    text-align: center;
    margin: 3rem 0;
}

.cta button {
    background: #28a745;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cta button:hover {
    background: #218838;
    transform: scale(1.05);
}

.footer {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    color: #666;
    font-style: 0.95rem;
    text-align: center;
    border-top: 1px solid #e4e4e4;
}

.footer .footer-links {
    margin-bottom: 0.75rem;
}
.footer a {
    margin: 0 1rem;
    text-decoration: none !important;
    color: #666;
}
.footer a:hover {

    color: #000;
}

@media (max-width: 768px) {
    .learn-item {
        flex: 1 1 100%;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;

    }

    .testimonial img {
        margin: 0 0 1rem;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar nav {
        margin-top: 0.5rem;
    }
}