body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
}

header {
    background-color: #002147;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #ff9900;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 0;
    font-size: 1.2em;
}

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

main {
    padding: 40px 0;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.text-content {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.image-content {
    flex: 1;
    min-width: 300px;
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #002147;
    font-size: 1.8em;
    border-bottom: 2px solid #ff9900;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

section {
    background: white;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #002147;
    color: white;
    border-top: 4px solid #ff9900;
}

footer p {
    margin: 0;
}

a {
    color: #ff9900;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    h2 {
        font-size: 1.5em;
    }

    section {
        padding: 15px;
    }

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

    .text-content, .image-content {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    header p {
        font-size: 0.9em;
    }

    h2 {
        font-size: 1.2em;
    }

    section {
        padding: 10px;
    }

    main {
        padding: 20px 0;
    }
}
