/* GENERAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.header {
    background: #003A90;
    padding: 12px 40px;
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
}

.nav a:hover {
    text-decoration: underline;
}

/* SECTIONS */
.section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
}

.section-gray {
    background: #f0f0f0;
}

.sec-left img {
    width: 350px;
    border-radius: 20px;
    object-fit: cover;
}

.sec-right {
    width: 45%;
}

.text-block {
    width: 45%;
}

/* IMÁGENES */
.img-phone {
    width: 260px;
}

/* BUTTON */
.btn {
    background: #003A90;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 12px;
}

.btn:hover {
    background: #002d73;
}

/* SECCIÓN INFERIOR */
.section-bottom {
    padding: 60px 80px;
    background: #fafafa;
}

.section-bottom h2 {
    margin-bottom: 5px;
}

.link {
    display: block;
    margin-top: 10px;
    color: #003A90;
    text-decoration: none;
    font-weight: bold;
}

.link:hover {
    text-decoration: underline;
}

.file-list {
    margin-top: 15px;
}

.file-list li {
    margin-bottom: 5px;
}

.file-list a {
    color: #003A90;
    text-decoration: none;
}

.file-list a:hover {
    text-decoration: underline;
}
