* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    color: #222;
    line-height: 1.6;
}

header {
    background: #0b5d1e;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 15px;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

section h2 {
    margin-bottom: 15px;
}

section a {
    display: inline-block;
    margin-top: 20px;
    background: #0b5d1e;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 40px;
}

@media (max-width: 700px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    main {
        margin-top: 20px;
    }

    section {
        padding: 20px;
    }
}
form {
    display: grid;
    gap: 12px;
}

form label {
    font-weight: bold;
    margin-top: 6px;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font: inherit;
}

form textarea {
    resize: vertical;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: 2px solid #0b5d1e;
    border-color: #0b5d1e;
}

form button {
    margin-top: 15px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: #0b5d1e;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

form button:hover {
    background: #084716;
}

.aceptacion {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.aceptacion input {
    width: auto;
    margin-top: 5px;
}