* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f9f6f2;
    color: #333;
}

section {
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: #3e2723;
    padding: 15px 0;
}

.logo {
    color: white;
}

nav a:first-child {
    margin-left: 0;
}

nav a {
    margin-top: 10px;
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in;
}

nav a:hover {
    opacity: 0.5;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('./images/head.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #6d4c41;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #5d4037;
}

.features {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.feature {
    width: 30%;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    height: 200px;
}

.feature-title {
    margin-bottom: 10px;
}

.page {
    padding: 60px 0;
}

.program-list {
    margin-top: 20px;
    line-height: 1.8;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

input, textarea {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

footer {
    background: #3e2723;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;

}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        gap: 20px;
    }

    .feature {
        width: 100%;
    }

    .hero h2 {
        font-size: 28px;
    }
}
