:root {
--primary-hue: 210;
--primary-color: hsl(var(--primary-hue), 78%, 48%);
--primary-dark: hsl(var(--primary-hue), 78%, 38%);
--primary-light: hsl(var(--primary-hue), 78%, 58%);
--secondary-color: #f97316;
--text-primary: #1a202c;
--text-secondary: #4a5568;
--bg-light: #f7fafc;
--bg-white: #ffffff;
--border-color: #e2e8f0;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 6px 20px rgba(0,0,0,0.12);
--shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
}

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

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.7;
color: var(--text-primary);
background-color: var(--bg-white);
overflow-x: hidden;
}

.container-wrapper {
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
}

.main-header {
background: var(--bg-white);
box-shadow: var(--shadow-sm);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--border-color);
}

.navigation-bar {
padding: 18px 0;
}

.navigation-bar .container-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-section {
display: flex;
align-items: center;
}

.logo-image {
height: 52px;
width: auto;
border-radius: 8px;
}

.nav-menu {
display: flex;
list-style: none;
gap: 36px;
align-items: center;
}

.nav-menu a {
text-decoration: none;
color: var(--text-primary);
font-weight: 600;
font-size: 16px;
transition: color 0.3s ease;
position: relative;
}

.nav-menu a::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 0;
height: 3px;
background: var(--primary-color);
transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active-link::after {
width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active-link {
color: var(--primary-color);
}

.hero-banner {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
color: var(--bg-white);
padding: 110px 0 90px;
text-align: center;
position: relative;
overflow: hidden;
}

.hero-banner::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
background-size: cover;
opacity: 0.3;
}

.hero-banner h1 {
font-size: 52px;
font-weight: 800;
margin-bottom: 22px;
position: relative;
z-index: 1;
text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero-banner p {
font-size: 20px;
margin-bottom: 36px;
position: relative;
z-index: 1;
opacity: 0.95;
}

.cta-button {
display: inline-block;
padding: 16px 42px;
background: var(--secondary-color);
color: var(--bg-white);
text-decoration: none;
border-radius: 50px;
font-weight: 700;
font-size: 17px;
transition: all 0.3s ease;
box-shadow: var(--shadow-md);
position: relative;
z-index: 1;
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
background: #ea580c;
}

.statistics-section {
padding: 80px 0;
background: var(--bg-light);
}

.statistics-section h2 {
text-align: center;
font-size: 40px;
margin-bottom: 58px;
color: var(--text-primary);
font-weight: 800;
}

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

.stat-card {
background: var(--bg-white);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-image {
width: 100%;
height: 220px;
object-fit: cover;
}

.stat-content {
padding: 28px;
text-align: center;
}

.stat-content h3 {
font-size: 46px;
color: var(--primary-color);
margin-bottom: 12px;
font-weight: 800;
}

.stat-content p {
font-size: 16px;
color: var(--text-secondary);
line-height: 1.6;
}

.featured-content {
padding: 80px 0;
}

.featured-content h2 {
text-align: center;
font-size: 40px;
margin-bottom: 58px;
color: var(--text-primary);
font-weight: 800;
}

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

.content-item {
text-align: center;
padding: 36px;
background: var(--bg-white);
border-radius: 16px;
box-shadow: var(--shadow-sm);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.content-item:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-md);
border-color: var(--primary-color);
}

.icon-large {
width: 68px;
height: 68px;
color: var(--primary-color);
margin-bottom: 24px;
}

.content-item h3 {
font-size: 24px;
margin-bottom: 16px;
color: var(--text-primary);
font-weight: 700;
}

.content-item p {
color: var(--text-secondary);
font-size: 16px;
line-height: 1.7;
}

.latest-posts {
padding: 80px 0;
background: var(--bg-light);
}

.latest-posts h2 {
text-align: center;
font-size: 40px;
margin-bottom: 58px;
color: var(--text-primary);
font-weight: 800;
}

.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 36px;
}

.post-preview {
background: var(--bg-white);
border-radius: 16px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-preview:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
}

.post-image {
width: 100%;
height: 240px;
object-fit: cover;
}

.post-content {
padding: 28px;
}

.post-content h3 {
margin-bottom: 14px;
font-size: 22px;
font-weight: 700;
}

.post-content h3 a {
color: var(--text-primary);
text-decoration: none;
transition: color 0.3s ease;
}

.post-content h3 a:hover {
color: var(--primary-color);
}

.post-content p {
color: var(--text-secondary);
margin-bottom: 18px;
font-size: 15px;
line-height: 1.7;
}

.read-more {
color: var(--primary-color);
font-weight: 700;
text-decoration: none;
display: inline-flex;
align-items: center;
transition: gap 0.3s ease;
gap: 6px;
}

.read-more:hover {
gap: 12px;
}

.site-footer {
background: var(--text-primary);
color: var(--bg-white);
padding: 60px 0 24px;
margin-top: 80px;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 42px;
margin-bottom: 42px;
}

.footer-column h4 {
margin-bottom: 20px;
font-size: 19px;
color: var(--bg-white);
font-weight: 700;
}

.footer-column p {
margin-bottom: 12px;
opacity: 0.88;
line-height: 1.7;
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 11px;
}

.footer-links a {
color: var(--bg-white);
text-decoration: none;
opacity: 0.88;
transition: opacity 0.3s ease, padding-left 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
opacity: 1;
padding-left: 6px;
}

.social-links {
display: flex;
justify-content: center;
gap: 24px;
padding: 32px 0;
border-top: 1px solid rgba(255,255,255,0.15);
}

.social-links a {
color: var(--bg-white);
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
}

.social-links a:hover {
background: var(--primary-color);
transform: scale(1.15);
}

.social-links svg {
width: 22px;
height: 22px;
}

.footer-bottom {
text-align: center;
padding-top: 28px;
border-top: 1px solid rgba(255,255,255,0.15);
opacity: 0.85;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
padding: 28px;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease;
border-top: 3px solid var(--primary-color);
}

.cookie-consent.show-banner {
transform: translateY(0);
}

.cookie-content {
max-width: 1240px;
margin: 0 auto;
}

.cookie-content h3 {
margin-bottom: 14px;
color: var(--text-primary);
font-size: 22px;
font-weight: 700;
}

.cookie-content p {
margin-bottom: 20px;
color: var(--text-secondary);
line-height: 1.6;
font-size: 15px;
}

.cookie-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
align-items: center;
}

.cookie-btn {
padding: 12px 32px;
border: none;
border-radius: 50px;
cursor: pointer;
font-weight: 700;
font-size: 15px;
transition: all 0.3s ease;
}

.accept-btn {
background: var(--primary-color);
color: var(--bg-white);
}

.accept-btn:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.decline-btn {
background: var(--border-color);
color: var(--text-primary);
}

.decline-btn:hover {
background: #cbd5e0;
}

.cookie-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
margin-left: 12px;
}

.cookie-link:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.nav-menu {
flex-direction: column;
gap: 16px;
}

.hero-banner h1 {
font-size: 36px;
}

.hero-banner p {
font-size: 17px;
}

.statistics-section h2,
.featured-content h2,
.latest-posts h2 {
font-size: 32px;
}

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

.footer-grid {
grid-template-columns: 1fr;
gap: 32px;
}

.cookie-buttons {
flex-direction: column;
align-items: stretch;
}

.cookie-btn {
width: 100%;
}
}
