:root {
--primary-color: #8B5CF6;
--secondary-color: #EC4899;
--accent-color: #10B981;
--dark-bg: #1F2937;
--light-bg: #F9FAFB;
--white: #FFFFFF;
--text-primary: #111827;
--text-secondary: #6B7280;
--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;
}

html {
scroll-behavior: smooth;
}

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

a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}

img {
max-width: 100%;
height: auto;
display: block;
}

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

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

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

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

.brand-title {
font-size: 1.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.mobile-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.hamburger-line {
width: 25px;
height: 3px;
background: var(--primary-color);
border-radius: 3px;
transition: var(--transition);
}

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

.nav-link {
font-weight: 500;
color: var(--text-primary);
padding: 0.5rem 1rem;
border-radius: 8px;
transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
color: var(--primary-color);
background: var(--light-bg);
}

.hero-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 1400px;
margin: 0 auto;
padding: 5rem 2rem;
}

.hero-content {
z-index: 1;
}

.hero-title {
font-size: 3.5rem;
line-height: 1.2;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subtitle {
font-size: 1.3rem;
color: var(--text-secondary);
margin-bottom: 2rem;
line-height: 1.7;
}

.hero-image img {
border-radius: 24px;
box-shadow: var(--shadow-xl);
}

.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
box-shadow: var(--shadow-lg);
transition: var(--transition);
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-xl);
}

.cta-button-secondary {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--white);
color: var(--primary-color);
border: 2px solid var(--primary-color);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
}

.cta-button-secondary:hover {
background: var(--primary-color);
color: var(--white);
transform: translateY(-3px);
}

.cta-button-outline {
display: inline-block;
padding: 1.2rem 3rem;
background: transparent;
color: var(--white);
border: 2px solid var(--white);
border-radius: 50px;
font-weight: 600;
font-size: 1.1rem;
transition: var(--transition);
}

.cta-button-outline:hover {
background: var(--white);
color: var(--primary-color);
transform: translateY(-3px);
}

.main-content {
overflow: hidden;
}

.container-wrapper {
max-width: 1400px;
margin: 0 auto;
padding: 4rem 2rem;
}

.section-heading {
font-size: 2.8rem;
text-align: center;
margin-bottom: 3rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.intro-section {
background: var(--light-bg);
}

.intro-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: start;
}

.lead-paragraph {
font-size: 1.2rem;
color: var(--text-secondary);
margin-bottom: 1.5rem;
line-height: 1.8;
}

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

.feature-list {
list-style: none;
}

.feature-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.2rem;
background: var(--white);
margin-bottom: 1rem;
border-radius: 12px;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}

.feature-item:hover {
transform: translateX(10px);
box-shadow: var(--shadow-md);
}

.feature-icon {
color: var(--primary-color);
flex-shrink: 0;
}

.services-section {
background: var(--white);
}

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

.service-card {
background: var(--white);
padding: 2.5rem;
border-radius: 16px;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-xl);
}

.service-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 16px;
color: var(--white);
margin-bottom: 1.5rem;
}

.service-title {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
}

.service-description {
color: var(--text-secondary);
line-height: 1.8;
}

.featured-posts {
background: var(--light-bg);
}

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

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

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

.post-image {
height: 250px;
overflow: hidden;
}

.post-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

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

.post-content {
padding: 2rem;
}

.post-title {
font-size: 1.4rem;
margin-bottom: 1rem;
}

.post-title a {
color: var(--text-primary);
}

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

.post-excerpt {
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 1.5rem;
}

.read-more {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: var(--transition);
}

.read-more:hover {
gap: 1rem;
}

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

.stats-section {
background: var(--dark-bg);
color: var(--white);
}

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

.stat-box {
text-align: center;
padding: 2rem;
}

.stat-number {
font-size: 3.5rem;
font-weight: 700;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.8);
}

.cta-section {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
text-align: center;
}

.cta-content {
max-width: 800px;
margin: 0 auto;
}

.cta-heading {
font-size: 3rem;
margin-bottom: 1.5rem;
color: var(--white);
}

.cta-text {
font-size: 1.2rem;
margin-bottom: 2.5rem;
opacity: 0.9;
}

.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}

.site-footer {
background: var(--dark-bg);
color: var(--white);
padding: 4rem 0 2rem;
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}

.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 3rem;
margin-bottom: 3rem;
}

.footer-heading {
font-size: 1.3rem;
margin-bottom: 1.5rem;
color: var(--white);
}

.footer-text {
color: rgba(255, 255, 255, 0.7);
line-height: 1.8;
margin-bottom: 1.5rem;
}

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

.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: var(--white);
transition: var(--transition);
}

.social-icon:hover {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
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);
transition: var(--transition);
}

.footer-links a:hover {
color: var(--white);
padding-left: 5px;
}

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

.footer-contact li {
display: flex;
align-items: start;
gap: 0.8rem;
margin-bottom: 1rem;
color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
flex-shrink: 0;
margin-top: 3px;
}

.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: -100%;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
z-index: 9999;
transition: bottom 0.5s ease;
}

.cookie-banner.show {
bottom: 0;
}

.cookie-content {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
}

.cookie-text {
margin-bottom: 1.5rem;
}

.cookie-title {
font-size: 1.5rem;
margin-bottom: 0.5rem;
color: var(--text-primary);
}

.cookie-description {
color: var(--text-secondary);
line-height: 1.7;
}

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

.cookie-btn {
padding: 0.8rem 2rem;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
font-family: 'Poppins', sans-serif;
}

.cookie-accept {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: var(--white);
}

.cookie-accept:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

.cookie-customize {
background: var(--light-bg);
color: var(--text-primary);
}

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

.cookie-decline {
background: transparent;
color: var(--text-secondary);
border: 1px solid var(--border-color);
}

.cookie-decline:hover {
background: var(--light-bg);
}

.cookie-link {
color: var(--primary-color);
font-size: 0.9rem;
text-decoration: underline;
}

@media (max-width: 1024px) {
.hero-section,
.intro-grid {
grid-template-columns: 1fr;
gap: 3rem;
}

.hero-image {
order: -1;
}

.footer-grid {
grid-template-columns: repeat(2, 1fr);
}

.services-grid,
.posts-grid {
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
}

@media (max-width: 768px) {
.mobile-toggle {
display: flex;
}

.nav-menu {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh - 80px);
background: var(--white);
flex-direction: column;
padding: 2rem;
box-shadow: var(--shadow-lg);
transition: left 0.3s ease;
}

.nav-menu.active {
left: 0;
}

.hero-title,
.cta-heading {
font-size: 2.5rem;
}

.section-heading {
font-size: 2rem;
}

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}

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

.cta-buttons {
flex-direction: column;
align-items: center;
}

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

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

@media (max-width: 480px) {
.hero-title {
font-size: 2rem;
}

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

.section-heading {
font-size: 1.8rem;
}

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

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

.nav-container {
padding: 1rem;
}
}