/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Changa', sans-serif;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #4c8056 0%, #3a6442 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
}

.logo-img {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contenido de Términos y Condiciones */
.content {
    padding: 40px 30px;
    background: white;
}

.content h2 {
    color: #4c8056;
    font-size: 1.5rem;
    margin: 35px 0 18px 0;
    font-weight: 600;
    border-left: 4px solid #4c8056;
    padding-left: 15px;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
    padding: 15px 15px 15px 20px;
    border-radius: 0 12px 12px 0;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    color: #3a6442;
    font-size: 1.2rem;
    margin: 25px 0 12px 0;
    font-weight: 600;
    padding-left: 10px;
    border-left: 3px solid #4c8056;
}

.content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content p:last-child {
    margin-bottom: 0;
}

.content strong {
    color: #4c8056;
    font-weight: 700;
}

/* Sección de eliminación de cuenta */
.delete-account-section {
    background: #f8fff9;
    border: 2px solid #e8f5e9;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
}

.delete-account-section h3 {
    color: #2c5535;
    margin-top: 20px;
}

.delete-account-section h3:first-child {
    margin-top: 0;
}

/* Listas */
.content ul {
    margin: 15px 0 20px 25px;
    color: #555;
}

.content li {
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 5px;
}

.content li:last-child {
    margin-bottom: 0;
}

/* Estilos específicos para listas dentro de la sección de eliminación */
.delete-account-section ul {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4c8056;
    margin: 15px 0;
}

.delete-account-section li {
    background: #f8fff9;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 3px solid #4c8056;
}

.delete-account-section li:before {
    content: "•";
    color: #4c8056;
    font-weight: bold;
    margin-right: 10px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 25px 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

.back-btn {
    background: #4c8056;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #3a6442;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 15px;
        max-width: 100%;
    }

    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 1.8rem;
    }

    .content {
        padding: 30px 20px;
    }

    .content h2 {
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
        padding: 12px 12px 12px 15px;
    }

    .content h3 {
        font-size: 1.1rem;
    }

    .delete-account-section {
        padding: 20px;
        margin: 15px 0;
    }

    .delete-account-section ul {
        padding: 15px;
        margin: 12px 0;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

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

    .logo {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.2rem;
        padding: 10px 10px 10px 12px;
    }

    .content h3 {
        font-size: 1rem;
    }

    .content p {
        font-size: 0.95rem;
    }

    .delete-account-section {
        padding: 15px;
    }

    .delete-account-section ul {
        padding: 12px;
    }

    .delete-account-section li {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}