:root {
    --color-primary: #1d3557;
    --color-primary-dark: #14213d;
    --color-accent: #f4a261;
    --color-surface: #f8f9fa;
    --color-text: #212529;
    --rgb-primary: 29,53,87;
    --rgb-accent: 244,162,97;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 2px 6px rgba(244,162,97,0.15), 0 0 10px rgba(244,162,97,0.08);
    --shadow-md: 0 4px 12px rgba(244,162,97,0.25), 0 0 18px rgba(244,162,97,0.15);
    --shadow-lg: 0 8px 20px rgba(244,162,97,0.35), 0 0 28px rgba(244,162,97,0.2);
    --space-section: 5rem;
    --space-card: 2rem;
    --space-gap: 1.5rem;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --heading-weight: 700;
    --body-line-height: 1.7;
}

body { color: var(--color-text); line-height: var(--body-line-height); }
h1, h2, h3, h4 { font-weight: var(--heading-weight); }
section, .section { padding-top: var(--space-section); padding-bottom: var(--space-section); }
.card, [class*="card"] { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: var(--space-card); transition: var(--transition); }
.btn, button[class*="btn"], a[class*="btn"] { border-radius: var(--radius-md); transition: var(--transition); }
a:not([class]) { color: var(--color-accent); transition: var(--transition); }

.hero { background: #1d3557; color: #fff; }
.news-grid { background: #a8dadc; }
.feature-list { background: #f1faee; }
.testimonial-list { background: #e63946; color: #fff; }
.partner-grid { background: #f4a261; }
.faq-list { background: #2a9d8f; color: #fff; }
.stats-grid { background: #264653; color: #fff; }
.cta-section { background: #1d3557; color: #fff; }

.hero a, .testimonial-list a, .faq-list a, .stats-grid a { color: #e9c46a; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-gap); }
.news-grid > *:first-child { grid-column: span 3; }

.feature-list { display: flex; gap: var(--space-gap); overflow-x: auto; scroll-snap-type: x mandatory; }
.feature-list > * { flex: 0 0 300px; scroll-snap-align: start; }

.hero { padding: 2rem 0; } .hero-content { max-width: 560px; }

.testimonial-list { display: flex; overflow: hidden; } 
.testimonial-list > * { flex: 0 0 100%; }

.partner-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-gap); align-items: center; }

.faq-list { max-width: 800px; margin: 0 auto; }

.stats-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.stats-grid .stat-value { font-size: 3rem; }

.cta-section { background: var(--color-primary); color: #fff; padding: 4rem 2rem; }

.page-main { max-width: 1200px; margin: 0 auto; }

.card:hover, [class*="card"]:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), 0 0 32px rgba(var(--rgb-accent), 0.5); }
a:not([class]):hover { color: var(--color-accent); filter: brightness(1.1); }
.card { border: 2px solid var(--color-accent); }
header, .header, .navbar { background: transparent; }

@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .feature-list { grid-template-columns: repeat(2, 1fr) !important; }
    .partner-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .hero-inner { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
    :root { --space-section: 2rem; --space-card: 1rem; --space-gap: 0.75rem; }
    .news-grid { grid-template-columns: 1fr !important; }
    .feature-list { grid-template-columns: 1fr !important; }
    .faq-list { grid-template-columns: 1fr !important; }
    .testimonial-list { column-count: 1 !important; }
    .partner-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .cta-inner { grid-template-columns: 1fr !important; }
}