body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.8;
}

header {
    background-color: #004B70;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

header img {
    max-width: 150px;
    margin: 10px;
}

h1, h2, h3 {
    margin: 20px 0;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

section {
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

section p:last-child {
    margin-bottom: 40px;
}

p {
    line-height: 1.6;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #004B70;
    color: #ffffff;
    position: fixed;
    bottom: 0;
    width: 100%;
}

a {
    color: #004B70;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Mejora de visibilidad para los logos */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.logo-container a {
    display: inline-block;
    text-decoration: none;
}

.logo {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container a:hover .logo {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.innotech-logo {
    max-width: 170px;
}

/* Scroll Animation Styles */
.privacy-header,
.privacy-section,
.privacy-article,
.privacy-footer {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in.animate {
    opacity: 1;
    transform: translateX(0);
}

.privacy-article {
    transform: translateX(-30px);
    transition-delay: 0.1s;
}

.privacy-section h2 {
    color: #004B70;
    transition: color 0.3s ease;
}

.privacy-section:hover h2 {
    color: #1E88E5;
}

@media (max-width: 600px) {
    header img {
        max-width: 100px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    .privacy-article {
        transform: translateY(30px);
    }
}

@media (min-width: 1024px) {
    .privacy-section {
        margin: 40px auto;
        padding: 30px;
    }
}