/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #03313e, #196a88); /* Degradado azul */
    color: #fff;
}

a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s, color 0.3s;
}

a:hover {
    color: #66C2FF; /* Azul claro en hover */
    transform: translateY(-5px);
}

/* Header Styles */
header.header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #03313e, #196a88); /* Fondo degradado igual que el cuerpo */
    color: #fff;
}

header.header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: bold;
}

/* Main Content Styles */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy {
    line-height: 1.8;
    font-size: 1em;
}

.privacy-policy h2 {
    font-size: 1.5em;
    color: #03313e;
    margin-bottom: 10px;
}

.privacy-policy p {
    margin-bottom: 20px;
    color: #555;
}

.privacy-policy a {
    color: #196a88;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s;
}

.privacy-policy a:hover {
    color: #03313e;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #00334D, #0E2A47);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 80%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #ccc;
}

.footer-center ul, .footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-center li, .footer-right li {
    margin-bottom: 10px;
}

.footer-right .social-icons a img {
    width: 30px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s, filter 0.3s;
}

.footer-right .social-icons a img:hover {
    transform: translateY(-5px) scale(1.2);
    filter: brightness(1);
}

.footer-bottom {
    border-top: 1px solid #1f4e63;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 0.8em;
    color: #fff;
    text-align: center;
    width: 100%;
}

.footer-center nav ul {
    display: flex;
    flex-direction: column;
}

.footer-center nav ul li {
    margin: 5px 0;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    header.header h1 {
        font-size: 2em;
    }

    main {
        padding: 20px;
    }

    .privacy-policy h2 {
        font-size: 1.3em;
    }

    .privacy-policy p {
        font-size: 0.95em;
    }
}
