* {
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: #2d3748;
background-color: #f8fafc;
}

.main-nav {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-container {
max-width: 1280px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.2rem 2rem;
}

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

.logo-img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(255,255,255,0.3);
}

.site-title {
font-size: 1.5rem;
font-weight: 700;
color: white;
letter-spacing: -0.5px;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2.5rem;
}

.nav-link {
color: rgba(255,255,255,0.9);
text-decoration: none;
font-weight: 500;
font-size: 1.05rem;
transition: all 0.3s ease;
padding: 0.5rem 0;
border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
color: white;
border-bottom-color: white;
transform: translateY(-2px);
}

.hero-section {
background: linear-gradient(rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85)), url('images/1.jpg');
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
position: relative;
}

.hero-overlay {
max-width: 800px;
padding: 2rem;
}

.hero-title {
font-size: 4rem;
font-weight: 800;
margin-bottom: 1.5rem;
text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
opacity: 0.95;
animation: fadeInUp 1s ease;
}

.cta-button {
display: inline-block;
background: white;
color: #667eea;
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
animation: fadeInUp 1.2s ease;
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.main-content {
max-width: 1280px;
margin: 0 auto;
}

.container-wrap {
padding: 5rem 2rem;
}

.section-heading {
font-size: 2.8rem;
text-align: center;
margin-bottom: 3rem;
color: #1a202c;
font-weight: 800;
position: relative;
padding-bottom: 1rem;
transition: color 0.3s ease;
}

.section-heading:hover {
color: #667eea;
}

.section-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #667eea, #764ba2);
border-radius: 2px;
}

.intro-text {
font-size: 1.2rem;
line-height: 1.9;
color: #4a5568;
text-align: center;
max-width: 900px;
margin: 0 auto 4rem;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2.5rem;
margin-top: 4rem;
}

.stat-box {
text-align: center;
padding: 2.5rem;
background: white;
border-radius: 16px;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
transition: all 0.3s ease;
}

.stat-box:hover {
transform: translateY(-8px);
box-shadow: 0 16px 40px rgba(102, 126, 234, 0.2);
}

.stat-number {
font-size: 3.5rem;
font-weight: 800;
background: linear-gradient(135deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 1.1rem;
color: #718096;
font-weight: 600;
}

.features-section {
background: linear-gradient(135deg, #f6f8fb 0%, #e9ecf5 100%);
}

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

.feature-card {
background: white;
padding: 2.5rem;
border-radius: 16px;
text-align: center;
box-shadow: 0 6px 20px rgba(0,0,0,0.06);
transition: all 0.3s ease;
border: 2px solid transparent;
}

.feature-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 36px rgba(102, 126, 234, 0.15);
border-color: #667eea;
}

.feature-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
}

.feature-title {
font-size: 1.6rem;
margin-bottom: 1rem;
color: #1a202c;
font-weight: 700;
transition: color 0.3s ease;
}

.feature-title:hover {
color: #667eea;
}

.feature-desc {
color: #4a5568;
font-size: 1.05rem;
line-height: 1.7;
}

.latest-posts {
background: white;
}

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

.post-card {
background: white;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
transition: all 0.3s ease;
border: 1px solid #e2e8f0;
}

.post-card:hover {
transform: translateY(-8px);
box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.post-image {
width: 100%;
height: 250px;
object-fit: cover;
transition: transform 0.3s ease;
}

.post-card:hover .post-image {
transform: scale(1.05);
}

.post-content {
padding: 2rem;
}

.post-title {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #1a202c;
font-weight: 700;
line-height: 1.4;
transition: color 0.3s ease;
}

.post-title:hover {
color: #667eea;
}

.post-excerpt {
color: #4a5568;
margin-bottom: 1.5rem;
line-height: 1.7;
}

.read-more {
color: #667eea;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
transition: all 0.3s ease;
}

.read-more:hover {
color: #764ba2;
transform: translateX(5px);
}

.view-all-wrap {
text-align: center;
margin-top: 4rem;
}

.btn-view-all {
display: inline-block;
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 1rem 3rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.btn-view-all:hover {
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

.cta-section {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
text-align: center;
}

.cta-title {
font-size: 2.8rem;
margin-bottom: 1.5rem;
font-weight: 800;
}

.cta-text {
font-size: 1.3rem;
margin-bottom: 2.5rem;
opacity: 0.95;
}

.cta-button-secondary {
display: inline-block;
background: white;
color: #667eea;
padding: 1rem 3rem;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.cta-button-secondary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.site-footer {
background: #1a202c;
color: rgba(255,255,255,0.8);
padding: 4rem 2rem 2rem;
}

.footer-content {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-heading {
color: white;
font-size: 1.3rem;
margin-bottom: 1.5rem;
font-weight: 700;
}

.footer-text {
line-height: 1.8;
margin-bottom: 1.5rem;
}

.social-links {
display: flex;
gap: 1rem;
}

.social-icon {
color: rgba(255,255,255,0.7);
transition: all 0.3s ease;
}

.social-icon:hover {
color: #667eea;
transform: translateY(-3px);
}

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

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: rgba(255,255,255,0.7);
text-decoration: none;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
color: white;
transform: translateX(5px);
}

.contact-info {
list-style: none;
}

.contact-info li {
margin-bottom: 0.8rem;
}

.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 24px rgba(0,0,0,0.15);
padding: 2rem;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

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

.cookie-text {
margin-bottom: 1.5rem;
color: #4a5568;
line-height: 1.7;
}

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

.cookie-buttons button {
padding: 0.8rem 2rem;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 1rem;
}

.btn-accept {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
}

.btn-accept:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-customize {
background: #e2e8f0;
color: #2d3748;
}

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

.btn-decline {
background: transparent;
color: #718096;
border: 1px solid #e2e8f0;
}

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

.cookie-link {
color: #667eea;
text-decoration: none;
font-weight: 600;
}

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

@media (max-width: 768px) {
.nav-menu {
flex-direction: column;
gap: 1rem;
}
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.2rem;
}
.section-heading {
font-size: 2rem;
}
.posts-grid {
grid-template-columns: 1fr;
}
}
