:root {
--primary-color: #2563eb;
--primary-dark: #1e40af;
--secondary-color: #0ea5e9;
--accent-color: #f59e0b;
--success-color: #10b981;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-white: #ffffff;
--bg-light: #f9fafb;
--border-color: #e5e7eb;
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
--transition: all 0.3s ease;
}

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

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

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

.main-navigation {
background: var(--bg-white);
box-shadow: var(--shadow-md);
position: sticky;
top: 0;
z-index: 1000;
}

.nav-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 1rem 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.brand-logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
color: var(--text-dark);
font-weight: 700;
font-size: 1.5rem;
}

.brand-logo img {
border-radius: 8px;
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-links a {
text-decoration: none;
color: var(--text-dark);
font-weight: 500;
transition: var(--transition);
padding: 0.5rem 0;
}

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

.mobile-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: none;
border: none;
cursor: pointer;
}

.mobile-toggle span {
width: 25px;
height: 3px;
background: var(--text-dark);
border-radius: 2px;
transition: var(--transition);
}

.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
padding: 5rem 0;
max-width: 1200px;
margin: 0 auto;
padding-left: 20px;
padding-right: 20px;
}

.hero-content h1 {
font-size: 3rem;
color: var(--text-dark);
margin-bottom: 1.5rem;
line-height: 1.2;
}

.hero-subtitle {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.8;
}

.hero-cta {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
padding: 1rem 2rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: var(--transition);
border: none;
cursor: pointer;
font-size: 1rem;
}

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

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

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

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

.hero-image img {
width: 100%;
border-radius: 16px;
box-shadow: var(--shadow-xl);
}

.features-section,
.latest-posts {
padding: 5rem 0;
background: var(--bg-white);
}

.features-section h2,
.latest-posts h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: var(--text-dark);
}

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

.feature-card {
padding: 2rem;
background: var(--bg-light);
border-radius: 12px;
transition: var(--transition);
}

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

.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-dark);
}

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

.section-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 3rem;
}

.view-all {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
}

.view-all:hover {
color: var(--primary-dark);
}

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

.post-preview {
background: var(--bg-white);
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

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

.post-preview img {
width: 100%;
height: 250px;
object-fit: cover;
}

.post-content {
padding: 1.5rem;
}

.post-content h3 {
margin-bottom: 1rem;
}

.post-content h3 a {
color: var(--text-dark);
text-decoration: none;
transition: var(--transition);
}

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

.post-content p {
color: var(--text-light);
margin-bottom: 1rem;
}

.read-more {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
}

.read-more:hover {
color: var(--primary-dark);
}

.timer-section {
padding: 5rem 0;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
}

.countdown-wrapper {
text-align: center;
}

.countdown-wrapper h2 {
font-size: 2rem;
margin-bottom: 2rem;
}

.countdown-display {
display: flex;
justify-content: center;
gap: 2rem;
flex-wrap: wrap;
}

.time-unit {
display: flex;
flex-direction: column;
align-items: center;
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem 2rem;
border-radius: 12px;
min-width: 120px;
}

.time-value {
font-size: 3rem;
font-weight: 700;
}

.time-label {
font-size: 0.9rem;
text-transform: uppercase;
margin-top: 0.5rem;
opacity: 0.9;
}

.cta-section {
padding: 5rem 0;
background: var(--bg-light);
text-align: center;
}

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--text-dark);
}

.cta-section p {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
}

.site-footer {
background: var(--text-dark);
color: white;
padding: 3rem 0 1rem;
}

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

.footer-col h4 {
margin-bottom: 1rem;
font-size: 1.2rem;
}

.footer-col p,
.footer-col ul {
color: rgba(255, 255, 255, 0.8);
line-height: 1.8;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 0.5rem;
}

.footer-col a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: var(--transition);
}

.footer-col a:hover {
color: white;
}

.footer-reg {
font-size: 0.9rem;
margin-top: 1rem;
}

.contact-info li {
display: flex;
align-items: center;
gap: 0.5rem;
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
padding: 2rem;
z-index: 10000;
display: none;
}

.cookie-banner.show {
display: block;
}

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

.cookie-content h3 {
margin-bottom: 1rem;
color: var(--text-dark);
}

.cookie-content p {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.6;
}

.cookie-purposes {
margin: 1rem 0;
padding: 1rem;
background: var(--bg-light);
border-radius: 8px;
}

.cookie-purposes ul {
margin-left: 1.5rem;
}

.cookie-purposes li {
color: var(--text-light);
margin-bottom: 0.5rem;
}

.cookie-link {
font-size: 0.9rem;
}

.cookie-link a {
color: var(--primary-color);
text-decoration: none;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 1.5rem;
}

.cookie-btn {
padding: 0.75rem 1.5rem;
border-radius: 8px;
border: none;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

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

.cookie-btn.accept:hover {
background: var(--primary-dark);
}

.cookie-btn.customize {
background: var(--bg-light);
color: var(--text-dark);
border: 1px solid var(--border-color);
}

.cookie-btn.customize:hover {
background: var(--border-color);
}

.cookie-btn.decline {
background: transparent;
color: var(--text-light);
}

.cookie-btn.decline:hover {
color: var(--text-dark);
}

@media (max-width: 968px) {
.nav-links {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-white);
flex-direction: column;
padding: 1rem;
box-shadow: var(--shadow-md);
gap: 0;
}

.nav-links.active {
display: flex;
}

.nav-links li {
padding: 0.75rem 0;
border-bottom: 1px solid var(--border-color);
}

.mobile-toggle {
display: flex;
}

.hero-section {
grid-template-columns: 1fr;
padding: 3rem 0;
}

.hero-content h1 {
font-size: 2rem;
}

.hero-subtitle {
font-size: 1.1rem;
}

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

.countdown-display {
gap: 1rem;
}

.time-unit {
min-width: 80px;
padding: 1rem;
}

.time-value {
font-size: 2rem;
}

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

@media (max-width: 640px) {
.hero-content h1 {
font-size: 1.75rem;
}

.btn-primary,
.btn-secondary {
width: 100%;
text-align: center;
}

.section-header {
flex-direction: column;
align-items: flex-start;
gap: 1rem;
}

.cookie-buttons {
flex-direction: column;
}

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