:root {
    --primary: #1a5f3f;
    --primary-light: #2d8659;
    --secondary: #f39c12;
    --accent: #e74c3c;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --border: #e1e8ed;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: clamp(16px, 2.5vw, 18px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition);
}

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

.hero-wrapper {
    text-align: center;
    padding: 3rem 1rem;
    /*background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);*/
    color: white;
    border-radius: var(--radius);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.hero-wrapper p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

nav {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem 0;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: calc(var(--radius) / 2);
    white-space: nowrap;
    transition: var(--transition);
    display: block;
}

nav a:hover, nav a:focus {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

section {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

section:hover {
    box-shadow: var(--shadow-hover);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin: 1.5rem 0 1rem;
    color: var(--primary-light);
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    /*color: var(--text-secondary);*/
}

article {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: calc(var(--radius) / 2);
    margin: 1rem 0;
    border-left: 3px solid var(--secondary);
}

ul, ol {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-secondary);
}

li {
    margin-bottom: 0.5rem;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

.highlight {
    background: linear-gradient(120deg, var(--secondary) 0%, var(--secondary) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 125%;
    transition: background-size 0.3s ease;
    padding: 0 4px;
}

.highlight:hover {
    background-size: 100% 100%;
}

.warning {
    background: var(--accent);
    color: #1a1f2e;
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.warning::before {
    content: '⚠️';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-card {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: calc(var(--radius) / 2);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

aside {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
}

aside h3 {
    color: white;
    margin-bottom: 1rem;
}

aside p {
    color: rgba(255, 255, 255, 0.9);
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--bg-secondary);
    margin-top: 3rem;
    border-radius: var(--radius);
}

footer p {
    color: var(--text-secondary);
}

/* Image Styles from images-styles.css */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.hero-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.site-logo {
    width: 200px;
    height: 60px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.license-badge {
    width: 150px;
    height: 150px;
    margin: 2rem auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    border-radius: 5%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.provider-image {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 350px;
}

.provider-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.infographic {
    margin: 3rem auto;
    max-width: 600px;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

.infographic.visible {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.icon-item {
    text-align: center;
    transition: transform 0.2s;
    border-radius: 5%; 
}

.icon-item:hover {
    transform: scale(1.1);
}

.icon-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.5rem;
}

@media (max-width: 768px) {
    /* nav ul {
        flex-direction: column;
    }*/

    section {
        padding: 1.5rem 1rem;
    }

    .provider-image {
        width: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}