body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
}

.cookie-banner button {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.cookie-banner button:hover {
    background-color: #218838;
}

header {
    background: linear-gradient(135deg, #28a745, #fd7e14);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
}

#brand h1 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

header h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.8rem;
    margin: 0;
}

header p {
    font-size: 1.3rem;
    margin: 0.5rem 0 0;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 3rem;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

h2 {
    color: #28a745;
    font-family: 'Roboto', sans-serif;
    border-bottom: 3px solid #fd7e14;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.curso-card {
    background-color: #e9ecef;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

button {
    background-color: #fd7e14;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

button:hover {
    background-color: #e8680f;
}

.testimonio {
    background-color: #d4edda;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 5px solid #28a745;
}

.form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 2rem auto;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 1rem;
    font-weight: 500;
}

input, select {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 300px;
}

.newsletter label {
    font-size: 0.9rem;
}

.newsletter input[type="email"] {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.newsletter button {
    padding: 0.5rem 1rem;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter button:hover {
    background-color: #218838;
}

.links a {
    color: #fd7e14;
    margin: 0 1rem;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .newsletter {
        max-width: 100%;
    }
}