:root {
--primary-color: #2ecc71;
--secondary-color: #27ae60;
--accent-color: #16a085;
--dark-color: #2c3e50;
--light-color: #ecf0f1;
--text-color: #34495e;
--bg-color: #ffffff;
--shadow: 0 4px 6px rgba(0,0,0,0.1);
--transition: all 0.3s ease;
}

[data-theme="dark"] {
--primary-color: #27ae60;
--secondary-color: #2ecc71;
--accent-color: #1abc9c;
--dark-color: #ecf0f1;
--light-color: #2c3e50;
--text-color: #ecf0f1;
--bg-color: #1a1a1a;
--shadow: 0 4px 6px rgba(255,255,255,0.1);
}

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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
color: var(--text-color);
background-color: var(--bg-color);
transition: var(--transition);
}

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

.main-navigation {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
padding: 15px 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow);
}

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

.brand-logo {
display: flex;
align-items: center;
gap: 15px;
color: white;
font-size: 1.5rem;
font-weight: bold;
}

.brand-logo img {
border-radius: 50%;
border: 3px solid white;
}

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

.nav-menu a {
color: white;
text-decoration: none;
font-weight: 500;
transition: var(--transition);
display: flex;
align-items: center;
gap: 8px;
padding: 8px 15px;
border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
}

.mobile-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 1.5rem;
cursor: pointer;
}

.theme-switcher {
background: rgba(255,255,255,0.2);
border: 2px solid white;
color: white;
padding: 8px 15px;
border-radius: 25px;
cursor: pointer;
transition: var(--transition);
}

.theme-switcher:hover {
background: rgba(255,255,255,0.3);
transform: scale(1.05);
}

.hero-section {
position: relative;
height: 600px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
overflow: hidden;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.3);
}

.hero-content {
position: relative;
text-align: center;
color: white;
z-index: 1;
padding: 20px;
}

.hero-content h1 {
font-size: 3.5rem;
margin-bottom: 20px;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
font-size: 1.3rem;
margin-bottom: 30px;
}

.cta-button {
display: inline-block;
padding: 15px 40px;
background: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 30px;
font-weight: bold;
transition: var(--transition);
box-shadow: var(--shadow);
}

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

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

.stats-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
color: var(--dark-color);
}

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

.stat-card {
background: var(--bg-color);
padding: 40px;
border-radius: 15px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
}

.stat-card:hover {
transform: translateY(-10px);
box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.stat-card i {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.stat-number {
font-size: 3rem;
font-weight: bold;
color: var(--primary-color);
margin: 15px 0;
}

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

.featured-posts h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
color: var(--dark-color);
}

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

.post-card {
background: var(--bg-color);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

.post-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

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

.post-content {
padding: 25px;
}

.post-content h3 {
margin-bottom: 15px;
}

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

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

.post-meta {
color: #7f8c8d;
font-size: 0.9rem;
margin-bottom: 15px;
}

.read-more {
display: inline-block;
margin-top: 15px;
color: var(--primary-color);
text-decoration: none;
font-weight: bold;
transition: var(--transition);
}

.read-more:hover {
color: var(--secondary-color);
transform: translateX(5px);
}

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

.cta-section h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta-section p {
font-size: 1.2rem;
margin-bottom: 30px;
}

.cta-button-secondary {
display: inline-block;
padding: 15px 40px;
background: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 30px;
font-weight: bold;
transition: var(--transition);
}

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

.page-header {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: white;
padding: 80px 0;
text-align: center;
}

.page-header h1 {
font-size: 3rem;
margin-bottom: 15px;
}

.blog-section {
padding: 60px 0;
}

.blog-posts-list {
display: flex;
flex-direction: column;
gap: 40px;
}

.blog-post-item {
display: flex;
gap: 30px;
background: var(--bg-color);
border-radius: 15px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

.blog-post-item:hover {
transform: translateY(-5px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.blog-post-image {
flex: 0 0 500px;
}

.blog-post-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.blog-post-body {
flex: 1;
padding: 30px;
}

.blog-post-body h2 {
margin-bottom: 15px;
}

.blog-post-body h2 a {
color: var(--dark-color);
text-decoration: none;
transition: var(--transition);
}

.blog-post-body h2 a:hover {
color: var(--primary-color);
}

.post-metadata {
display: flex;
gap: 20px;
margin-bottom: 20px;
color: #7f8c8d;
font-size: 0.9rem;
}

.btn-read-article {
display: inline-block;
margin-top: 20px;
padding: 12px 30px;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 25px;
transition: var(--transition);
}

.btn-read-article:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.about-intro {
padding: 60px 0;
}

.about-content {
max-width: 900px;
margin: 0 auto;
}

.about-content h2 {
font-size: 2rem;
margin-bottom: 25px;
color: var(--primary-color);
}

.about-content p {
margin-bottom: 20px;
font-size: 1.1rem;
}

.team-section {
padding: 60px 0;
background: var(--light-color);
}

.team-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
color: var(--dark-color);
}

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

.team-member {
background: var(--bg-color);
padding: 30px;
border-radius: 15px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
}

.team-member:hover {
transform: translateY(-10px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.team-member img {
border-radius: 50%;
margin-bottom: 20px;
border: 5px solid var(--primary-color);
}

.team-member h3 {
margin-bottom: 10px;
color: var(--dark-color);
}

.team-role {
color: var(--primary-color);
font-weight: bold;
margin-bottom: 15px;
}

.values-section {
padding: 60px 0;
}

.values-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 50px;
color: var(--dark-color);
}

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

.value-card {
background: var(--bg-color);
padding: 40px;
border-radius: 15px;
text-align: center;
box-shadow: var(--shadow);
transition: var(--transition);
border-top: 5px solid var(--primary-color);
}

.value-card:hover {
transform: translateY(-10px);
box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.value-card i {
font-size: 3rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.value-card h3 {
margin-bottom: 15px;
color: var(--dark-color);
}

.contact-section {
padding: 60px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 50px;
}

.contact-info h2 {
font-size: 2rem;
margin-bottom: 30px;
color: var(--primary-color);
}

.info-item {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.info-item i {
font-size: 2rem;
color: var(--primary-color);
flex-shrink: 0;
}

.info-item h3 {
margin-bottom: 10px;
color: var(--dark-color);
}

.contact-form-wrapper {
background: var(--light-color);
padding: 40px;
border-radius: 15px;
box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
font-size: 2rem;
margin-bottom: 30px;
color: var(--primary-color);
}

.form-group {
margin-bottom: 25px;
}

.form-group label {
display: block;
margin-bottom: 10px;
font-weight: bold;
color: var(--dark-color);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 12px;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 1rem;
transition: var(--transition);
background: var(--bg-color);
color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
}

.submit-btn {
background: var(--primary-color);
color: white;
padding: 15px 40px;
border: none;
border-radius: 25px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: var(--transition);
}

.submit-btn:hover {
background: var(--secondary-color);
transform: translateY(-2px);
box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.7);
z-index: 2000;
justify-content: center;
align-items: center;
}

.modal-overlay.active {
display: flex;
}

.modal-content {
background: var(--bg-color);
padding: 50px;
border-radius: 15px;
text-align: center;
max-width: 500px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.modal-icon {
font-size: 5rem;
color: var(--primary-color);
margin-bottom: 20px;
}

.modal-content h2 {
font-size: 2rem;
margin-bottom: 15px;
color: var(--dark-color);
}

.modal-content p {
margin-bottom: 30px;
font-size: 1.1rem;
}

.modal-close-btn {
background: var(--primary-color);
color: white;
padding: 12px 30px;
border: none;
border-radius: 25px;
font-size: 1rem;
cursor: pointer;
transition: var(--transition);
}

.modal-close-btn:hover {
background: var(--secondary-color);
}

.post-article {
background: var(--bg-color);
}

.article-header {
background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
color: white;
padding: 60px 0;
}

.article-header h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.article-meta {
display: flex;
gap: 30px;
font-size: 1rem;
}

.article-meta span {
display: flex;
align-items: center;
gap: 8px;
}

.article-featured-image {
width: 100%;
max-height: 600px;
overflow: hidden;
}

.article-featured-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.article-content {
padding: 60px 0;
}

.article-content h2 {
font-size: 2rem;
margin: 40px 0 20px;
color: var(--primary-color);
}

.article-content h3 {
font-size: 1.5rem;
margin: 30px 0 15px;
color: var(--secondary-color);
}

.article-content p {
margin-bottom: 20px;
font-size: 1.1rem;
line-height: 1.8;
}

.article-navigation {
display: flex;
justify-content: space-between;
margin-top: 60px;
padding-top: 40px;
border-top: 2px solid var(--light-color);
}

.nav-button {
display: inline-block;
padding: 12px 30px;
background: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 25px;
transition: var(--transition);
}

.nav-button:hover {
background: var(--secondary-color);
transform: translateY(-2px);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: var(--dark-color);
color: white;
padding: 25px;
z-index: 1500;
box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
display: none;
}

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

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
}

.cookie-text h3 {
margin-bottom: 10px;
font-size: 1.3rem;
}

.cookie-text p {
margin-bottom: 10px;
line-height: 1.6;
}

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

.cookie-buttons {
display: flex;
gap: 15px;
flex-shrink: 0;
}

.cookie-btn {
padding: 12px 25px;
border: none;
border-radius: 25px;
font-weight: bold;
cursor: pointer;
transition: var(--transition);
}

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

.cookie-btn.accept:hover {
background: var(--secondary-color);
}

.cookie-btn.decline {
background: #95a5a6;
color: white;
}

.cookie-btn.decline:hover {
background: #7f8c8d;
}

.site-footer {
background: var(--dark-color);
color: var(--light-color);
padding: 60px 0 20px;
margin-top: 80px;
}

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

.footer-section h3 {
color: var(--primary-color);
margin-bottom: 20px;
font-size: 1.3rem;
}

.footer-section p {
margin-bottom: 15px;
line-height: 1.6;
}

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

.footer-section ul li {
margin-bottom: 12px;
}

.footer-section ul li a {
color: var(--light-color);
text-decoration: none;
transition: var(--transition);
display: flex;
align-items: center;
gap: 10px;
}

.footer-section ul li a:hover {
color: var(--primary-color);
transform: translateX(5px);
}

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

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

.nav-menu {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh - 80px);
background: var(--primary-color);
flex-direction: column;
padding: 30px;
transition: var(--transition);
}

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

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

.hero-content p {
font-size: 1rem;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.blog-post-item {
flex-direction: column;
}

.blog-post-image {
flex: 0 0 auto;
height: 300px;
}

.cookie-content {
flex-direction: column;
text-align: center;
}

.article-navigation {
flex-direction: column;
gap: 15px;
}
}
