/* Missing CSS Classes - Fix for Page Structure Issues */

/* Button Classes */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--background);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.btn-secondary {
    background: var(--background);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background);
}

/* Checkmark */
.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: relative;
}

.checkmark::after {
    content: '✓';
    color: var(--background);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
}

/* Contact Cards */
.contact-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-card.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background);
}

.contact-card.secondary {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--background);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn.cta-phone {
    background: var(--primary-color);
    color: var(--background);
}

.cta-btn.cta-phone:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-btn.cta-whatsapp {
    background: #25d366;
    color: var(--background);
}

.cta-btn.cta-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* District Classes */
.districts {
    padding: 6rem 0;
    background: var(--background-tertiary);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.district-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.district-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.district-icon {
    width: 80px;
    height: 80px;
    background: var(--background-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.district-link:hover .district-icon {
    background: var(--primary-color);
}

.district-link:hover .district-icon svg {
    stroke: var(--background);
}

.district-link h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.district-link p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Subpage Framework */
.subpage-hero {
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 55%),
        var(--background-secondary);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-copy p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.hero-metrics .metric {
    background: var(--background);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    min-width: 150px;
}

.hero-metrics .metric span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-metrics .metric small {
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.hero-tags a {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--background);
    font-size: 0.9rem;
    text-decoration: none;
}

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
}

.content-section {
    padding: 4.5rem 0;
    background: var(--background);
}

.content-section.alt {
    background: var(--background-secondary);
}

.content-section .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cards-grid .card {
    background: var(--background-secondary);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
}

.cards-grid .card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.cards-grid .card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.dual-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.dual-layout .content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-list strong {
    color: var(--text-primary);
}

.timeline-modern {
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-row {
    background: var(--background);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-row::before {
    content: attr(data-year);
    position: absolute;
    left: -4.25rem;
    top: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.seo-rich-block {
    background: var(--background-secondary);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.seo-rich-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-rich-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background);
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.25);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.cta-banner p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--background-secondary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-card ul {
    margin: 1rem 0 0;
    padding-left: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.package-table th,
.package-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-panel {
    background: var(--background-secondary);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-panel span {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.contact-panel strong {
    font-size: 1.4rem;
    color: var(--text-primary);
}

.district-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.district-badges a {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--background);
    text-decoration: none;
    font-weight: 500;
}

.ops-board {
    background: var(--background-secondary);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-lg);
}

.ops-board ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.ops-board li {
    background: var(--background);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.ops-board li strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.contact-hero .hero-grid {
    align-items: stretch;
}

.hero-aside {
    background: var(--background);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-aside h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.hero-aside p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.channel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.channel-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    gap: 1rem;
}

.channel-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.channel-list strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
}

.channel-list small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.channel-list a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-actions .btn {
    justify-content: center;
}

.contact-hero .hero-tags a {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
    color: var(--primary-color);
}

.contact-panels .contact-panel {
    min-height: 210px;
}

.contact-panels .contact-panel p {
    color: var(--text-secondary);
}

.contact-panels .text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(0, 360px);
    gap: 2rem;
    align-items: start;
}

.form-shell {
    background: var(--background-secondary);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-shell h2 {
    margin-top: 0;
}

.contact-briefing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.briefing-card {
    background: var(--background);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.briefing-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.briefing-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.district-links .district-badges {
    justify-content: center;
}

.breadcrumbs {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs li[aria-current="page"] {
    color: var(--text-primary);
    font-weight: 500;
}

.page-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 55%);
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-district {
    background-size: cover;
    background-position: center;
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.hero-bullets li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    color: white;
    box-shadow: var(--shadow-sm);
}

.hero-bullets strong {
    color: #ffd166;
}

.hero-district .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
}

.district-spotlight {
    padding: 4rem 0;
    background: var(--background-alt, #f5f7fb);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.spotlight-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.spotlight-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.spotlight-card p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.spotlight-card span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    font-weight: 600;
}

.district-insights {
    padding: 5rem 0;
}

.insights-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2.5rem;
}

.insights-main {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.insights-main p {
    color: var(--text-secondary);
}

.insights-panels {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-card {
    background: var(--background);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.insight-card h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.insight-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-secondary);
}

.district-services {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.02);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.service-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.service-matrix-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-matrix-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-matrix-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-matrix-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-matrix-card ul {
    margin: 0;
    padding-left: 1rem;
    color: var(--text-secondary);
}

.district-operations {
    padding: 4.5rem 0;
}

.operation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.operation-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.operation-card h4 {
    margin-bottom: 0.75rem;
}

.district-seo {
    padding: 4rem 0;
    background: #030712;
    color: white;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.seo-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.seo-card h3 {
    margin-bottom: 0.75rem;
    color: white;
}

.seo-card p {
    color: rgba(255, 255, 255, 0.85);
}

.seo-card a {
    color: #7ee3ff;
}

.keyword-focus {
    padding: 4.5rem 0;
}

.keyword-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.keyword-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.keyword-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.keyword-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.keyword-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-secondary);
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.content-section {
    padding: 5rem 0;
}

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

.content-main h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.content-main h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-primary);
}

.content-main p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.content-main ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.content-main li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.content-main li strong {
    color: var(--text-primary);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.sidebar-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card li strong {
    color: var(--text-primary);
}

.sidebar-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-card a:hover {
    color: var(--secondary-color);
}

.features-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.02);
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insights-panels {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .insight-card {
        flex: 1 1 250px;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-copy h1 {
        font-size: 2rem;
    }
    
    .cta-banner {
        padding: 2.25rem;
    }

    .hero-aside {
        padding: 1.5rem;
    }
    
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .content-section,
    .features-section,
    .faq-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .breadcrumbs ol {
        font-size: 0.8rem;
    }

    .insights-panels {
        flex-direction: column;
    }

    .insight-card {
        flex: 1 1 auto;
        width: 100%;
    }
}
