/* MINIMAL PAGE-SPECIFIC STYLES (uses existing CSS foundation) */
.authority-page {
    font-family: 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CONTENT BLOCKS */
.content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 20px;
}

/* ZONAS GRID */
.zonas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.zona-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zona-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.zona-link {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: inherit;
}

.zona-link h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.zona-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.zona-cta {
    display: inline-block;
    font-weight: 600;
    color: #db4a2b;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.zona-link:hover .zona-cta {
    color: #c0392b;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #db4a2b 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #db4a2b;
    font-weight: 700;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* INTERNAL LINKS */
.internal-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.link-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.link-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.link-card h3 a:hover {
    color: #db4a2b;
}

.link-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .zonas-grid,
    .internal-links {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 0;
    }
}