:root {
--primary-color: #6366f1;
--secondary-color: #8b5cf6;
--accent-color: #ec4899;
--dark-bg: #0f172a;
--light-bg: #f8fafc;
--text-dark: #1e293b;
--text-light: #64748b;
--white: #ffffff;
--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
--shadow: 0 10px 30px rgba(0,0,0,0.1);
--border-radius: 12px;
}

* {
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-dark);
background-color: var(--light-bg);
overflow-x: hidden;
}

.main-header {
background: var(--gradient);
color: var(--white);
padding: 1.5rem 0;
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
}

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

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

.site-logo {
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid var(--white);
}

.logo-section h1 {
font-size: 1.8rem;
font-weight: 700;
}

.tagline {
font-size: 0.95rem;
opacity: 0.9;
margin-bottom: 1rem;
font-style: italic;
}

.main-navigation ul {
list-style: none;
display: flex;
gap: 2rem;
flex-wrap: wrap;
}

.main-navigation a {
color: var(--white);
text-decoration: none;
font-weight: 500;
transition: opacity 0.3s;
padding: 0.5rem 0;
}

.main-navigation a:hover,
.main-navigation a.active {
opacity: 0.8;
border-bottom: 2px solid var(--white);
}

.hero-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: var(--white);
padding: 4rem 2rem;
text-align: center;
}

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

.hero-content h2 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
font-weight: 700;
}

.hero-content p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.hero-image {
width: 100%;
max-width: 800px;
height: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
margin-top: 2rem;
}

.featured-content {
padding: 4rem 2rem;
background: var(--white);
}

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

.content-wrapper h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 3rem;
color: var(--text-dark);
}

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

.feature-card {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.feature-card h3 {
font-size: 1.4rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

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

.info-section {
padding: 4rem 2rem;
background: var(--light-bg);
}

.info-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.info-text h2 {
font-size: 2rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.info-text p {
color: var(--text-light);
margin-bottom: 1rem;
line-height: 1.7;
}

.section-image {
width: 100%;
height: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

.cta-section {
background: var(--gradient);
color: var(--white);
padding: 4rem 2rem;
text-align: center;
}

.cta-content h2 {
font-size: 2.2rem;
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.1rem;
margin-bottom: 2rem;
opacity: 0.95;
}

.cta-button {
display: inline-block;
background: var(--white);
color: var(--primary-color);
padding: 1rem 2.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.page-header {
background: var(--gradient);
color: var(--white);
padding: 3rem 2rem;
text-align: center;
}

.page-header-content h2 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}

.page-header-content p {
font-size: 1.1rem;
opacity: 0.9;
}

.blog-main {
padding: 4rem 2rem;
background: var(--white);
}

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

.blog-post-card {
background: var(--light-bg);
border-radius: var(--border-radius);
overflow: hidden;
margin-bottom: 2.5rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
display: grid;
grid-template-columns: 350px 1fr;
transition: transform 0.3s;
}

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

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

.post-content {
padding: 2rem;
}

.post-content h3 {
font-size: 1.6rem;
margin-bottom: 0.8rem;
}

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

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

.post-meta {
color: var(--text-light);
font-size: 0.9rem;
margin-bottom: 1rem;
display: flex;
gap: 1.5rem;
}

.post-excerpt {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1rem;
}

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

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

.about-main {
background: var(--white);
}

.about-intro {
padding: 4rem 2rem;
background: var(--light-bg);
}

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

.about-intro-content h2 {
font-size: 2.2rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.about-intro-content p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1.5rem;
font-size: 1.05rem;
}

.about-intro-image {
width: 100%;
max-width: 800px;
margin: 2rem auto;
display: block;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

.mission-vision {
padding: 4rem 2rem;
background: var(--white);
}

.mission-vision-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

.mission-box,
.vision-box {
background: var(--light-bg);
padding: 2.5rem;
border-radius: var(--border-radius);
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.mission-box .icon,
.vision-box .icon {
font-size: 3rem;
display: block;
margin-bottom: 1rem;
}

.mission-box h3,
.vision-box h3 {
font-size: 1.6rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

.mission-box p,
.vision-box p {
color: var(--text-light);
line-height: 1.7;
}

.team-section {
padding: 4rem 2rem;
background: var(--light-bg);
}

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

.team-container h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 1rem;
color: var(--text-dark);
}

.team-intro {
text-align: center;
color: var(--text-light);
margin-bottom: 3rem;
font-size: 1.1rem;
}

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

.team-member {
background: var(--white);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: transform 0.3s;
text-align: center;
}

.team-member:hover {
transform: translateY(-5px);
box-shadow: var(--shadow);
}

.team-member img {
width: 100%;
height: 400px;
object-fit: cover;
}

.team-member h3 {
font-size: 1.3rem;
padding: 1rem 1.5rem 0.5rem;
color: var(--text-dark);
}

.member-role {
color: var(--primary-color);
font-weight: 600;
padding: 0 1.5rem 0.5rem;
}

.member-bio {
padding: 0 1.5rem 1.5rem;
color: var(--text-light);
line-height: 1.6;
font-size: 0.95rem;
}

.values-section {
padding: 4rem 2rem;
background: var(--white);
}

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

.values-container h2 {
text-align: center;
font-size: 2.2rem;
margin-bottom: 3rem;
color: var(--text-dark);
}

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

.value-item {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.value-item .icon {
font-size: 3rem;
display: block;
margin-bottom: 1rem;
}

.value-item h3 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
color: var(--primary-color);
}

.value-item p {
color: var(--text-light);
line-height: 1.6;
}

.contact-main {
padding: 4rem 2rem;
background: var(--white);
}

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

.contact-info-section {
margin-bottom: 4rem;
}

.contact-info-section h2 {
font-size: 2rem;
margin-bottom: 2rem;
color: var(--text-dark);
}

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

.contact-card {
background: var(--light-bg);
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
text-align: center;
}

.contact-icon {
font-size: 2.5rem;
display: block;
margin-bottom: 1rem;
}

.contact-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

.contact-card p {
color: var(--text-light);
line-height: 1.6;
margin-bottom: 0.3rem;
}

.contact-image {
margin-top: 2rem;
}

.contact-form-section {
background: var(--light-bg);
padding: 3rem;
border-radius: var(--border-radius);
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.form-description {
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.6;
}

.contact-form {
display: grid;
gap: 1.5rem;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 0.8rem;
border: 2px solid #e2e8f0;
border-radius: 8px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.3s;
}

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

.checkbox-group {
flex-direction: row;
align-items: center;
gap: 0.5rem;
}

.checkbox-group input {
width: auto;
margin: 0;
}

.checkbox-group label {
margin: 0;
font-weight: 400;
}

.checkbox-group a {
color: var(--primary-color);
}

.submit-button {
background: var(--gradient);
color: var(--white);
padding: 1rem 2rem;
border: none;
border-radius: 8px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
}

.modal {
display: none;
position: fixed;
z-index: 2000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.6);
}

.modal-content {
background-color: var(--white);
margin: 10% auto;
padding: 0;
border-radius: var(--border-radius);
width: 90%;
max-width: 500px;
box-shadow: 0 15px 50px rgba(0,0,0,0.3);
position: relative;
animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.close-modal {
position: absolute;
right: 1.5rem;
top: 1rem;
font-size: 2rem;
font-weight: bold;
color: var(--text-light);
cursor: pointer;
}

.close-modal:hover {
color: var(--text-dark);
}

.modal-body {
padding: 3rem;
text-align: center;
}

.success-icon {
display: inline-block;
width: 80px;
height: 80px;
background: var(--gradient);
color: var(--white);
border-radius: 50%;
font-size: 3rem;
line-height: 80px;
margin-bottom: 1.5rem;
}

.modal-body h2 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--text-dark);
}

.modal-body p {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1rem;
}

.modal-close-btn {
background: var(--gradient);
color: var(--white);
border: none;
padding: 0.8rem 2rem;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
margin-top: 1rem;
transition: transform 0.3s;
}

.modal-close-btn:hover {
transform: scale(1.05);
}

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

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

.post-header {
margin-bottom: 3rem;
}

.post-header h1 {
font-size: 2.5rem;
line-height: 1.3;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.post-meta-info {
display: flex;
gap: 2rem;
flex-wrap: wrap;
color: var(--text-light);
font-size: 0.95rem;
margin-bottom: 2rem;
}

.post-featured-image {
width: 100%;
height: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

.post-content {
font-size: 1.1rem;
line-height: 1.8;
color: var(--text-dark);
}

.lead-paragraph {
font-size: 1.25rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 2rem;
font-weight: 400;
}

.post-content h2 {
font-size: 1.9rem;
margin-top: 2.5rem;
margin-bottom: 1.5rem;
color: var(--text-dark);
}

.post-content h3 {
font-size: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
color: var(--text-dark);
}

.post-content p {
margin-bottom: 1.5rem;
line-height: 1.9;
}

.post-content ul,
.post-content ol {
margin-left: 2rem;
margin-bottom: 1.5rem;
}

.post-content li {
margin-bottom: 0.8rem;
line-height: 1.7;
}

.post-footer {
margin-top: 4rem;
padding-top: 2rem;
border-top: 2px solid var(--light-bg);
}

.post-tags {
margin-bottom: 2rem;
}

.tag-label {
font-weight: 600;
color: var(--text-dark);
margin-right: 0.5rem;
}

.tag {
display: inline-block;
background: var(--light-bg);
color: var(--primary-color);
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.9rem;
margin-right: 0.5rem;
margin-top: 0.5rem;
}

.post-navigation {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem;
}

.back-to-blog,
.next-post,
.prev-post {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
padding: 0.8rem 1.5rem;
border: 2px solid var(--primary-color);
border-radius: 8px;
transition: background-color 0.3s, color 0.3s;
}

.back-to-blog:hover,
.next-post:hover,
.prev-post:hover {
background-color: var(--primary-color);
color: var(--white);
}

.main-footer {
background: var(--dark-bg);
color: var(--white);
padding: 3rem 2rem 1.5rem;
}

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

.footer-section h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--white);
}

.footer-section p {
color: rgba(255,255,255,0.8);
line-height: 1.7;
margin-bottom: 0.5rem;
font-size: 0.95rem;
}

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

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

.footer-section ul li a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: color 0.3s;
}

.footer-section ul li a:hover {
color: var(--white);
}

.footer-bottom {
max-width: 1200px;
margin: 0 auto;
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.7);
}

.cookie-banner {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--white);
box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
z-index: 1500;
padding: 2rem;
animation: slideUp 0.4s;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

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

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

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

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

.cookie-btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s, box-shadow 0.3s;
}

.cookie-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.cookie-btn.reject {
background: transparent;
color: var(--text-light);
border: 2px solid var(--text-light);
}

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

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

@media (max-width: 768px) {
.main-navigation ul {
flex-direction: column;
gap: 0.5rem;
}
.hero-content h2 {
font-size: 1.8rem;
}
.info-container {
grid-template-columns: 1fr;
}
.blog-post-card {
grid-template-columns: 1fr;
}
.post-image img {
height: 250px;
}
.mission-vision-container {
grid-template-columns: 1fr;
}
.post-header h1 {
font-size: 2rem;
}
.post-meta-info {
flex-direction: column;
gap: 0.5rem;
}
.cookie-buttons {
flex-direction: column;
}
}