/* Estilos generales */
body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-family: 'Calibri', sans-serif;
}

.policy-header {
    background: #064b98;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.policy-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.policy-header h1 {
    color: white;
    font-size: 2.5rem;
    margin: 0;
}

.policy-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.legal-text {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(6,75,152,0.1);
}

.section-title {
    color: #064b98;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section {
    margin: 2rem 0;
}

.policy-section h3 {
    color: #064b98;
    margin-bottom: 0.5rem;
}

ul, ol {
    padding-left: 1.5rem;
}

li {
    margin: 0.5rem 0;
}

.policy-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(6,75,152,0.1);
}

.form-title {
    color: #064b98;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #064b98;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

select {
    appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23064b98'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e") no-repeat right 0.8rem center/1.2rem;
}

.form-checkbox {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn {
    background: #FF6B35;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e6552d;
}

.legal-disclaimer {
    text-align: center;
    color: #666;
    padding: 1rem;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    .privacy-content {
        grid-template-columns: 1fr;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
}