:root {
--primary-color: #2563eb;
--primary-dark: #1e40af;
--secondary-color: #10b981;
--text-dark: #1f2937;
--text-light: #6b7280;
--bg-light: #f9fafb;
--bg-white: #ffffff;
--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);
--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-white);
}

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

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

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

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

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

.site-logo {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.brand-name {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}

.primary-nav {
display: flex;
}

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

.nav-link {
color: var(--text-dark);
font-weight: 500;
padding: 0.5rem 0;
position: relative;
}

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

.nav-link.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 2px;
background: var(--primary-color);
}

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

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

.hero-banner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
max-width: 1200px;
margin: 4rem auto;
padding: 2rem;
align-items: center;
}

.hero-content h1 {
font-size: 2.5rem;
font-weight: 800;
color: var(--text-dark);
margin-bottom: 1rem;
line-height: 1.2;
}

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

.cta-primary {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 1rem 2rem;
border-radius: 8px;
font-weight: 600;
box-shadow: var(--shadow-md);
}

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

.hero-image {
width: 100%;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

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

.section-heading {
font-size: 2rem;
font-weight: 700;
text-align: center;
margin-bottom: 3rem;
color: var(--text-dark);
}

.features-grid {
background: var(--bg-light);
}

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

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

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

.feature-icon {
color: var(--primary-color);
margin-bottom: 1rem;
}

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

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

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

.history-content {
display: flex;
gap: 2rem;
align-items: flex-start;
}

.history-icon {
flex-shrink: 0;
}

.history-text h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

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

.cta-section h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.cta-section p {
font-size: 1.125rem;
margin-bottom: 2rem;
opacity: 0.9;
}

.cta-button {
display: inline-block;
background: white;
color: var(--primary-color);
padding: 1rem 2.5rem;
border-radius: 8px;
font-weight: 600;
box-shadow: var(--shadow-md);
}

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

.page-hero {
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
color: white;
text-align: center;
padding: 4rem 2rem;
}

.page-hero h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.blog-container {
min-height: 60vh;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
}

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

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

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

.blog-content {
padding: 1.5rem;
}

.blog-category {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 4px;
font-size: 0.875rem;
margin-bottom: 0.75rem;
}

.blog-card h2 {
font-size: 1.25rem;
margin-bottom: 0.75rem;
}

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

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

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

.read-more:hover {
text-decoration: underline;
}

.about-intro {
padding: 4rem 2rem;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

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

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

.about-image img {
width: 100%;
border-radius: 12px;
box-shadow: var(--shadow-lg);
}

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

.team-member {
text-align: center;
background: var(--bg-white);
padding: 2rem;
border-radius: 12px;
box-shadow: var(--shadow-md);
transition: var(--transition);
}

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

.team-member img {
width: 150px;
height: 150px;
border-radius: 50%;
margin: 0 auto 1rem;
object-fit: cover;
}

.team-member h3 {
font-size: 1.25rem;
margin-bottom: 0.5rem;
}

.team-role {
color: var(--primary-color);
font-weight: 600;
margin-bottom: 0.75rem;
}

.team-member p {
color: var(--text-light);
font-size: 0.9rem;
}

.mission-vision {
background: var(--bg-light);
}

.mission-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

.mission-box {
background: var(--bg-white);
padding: 2rem;
border-radius: 12px;
box-shadow: var(--shadow-md);
}

.mission-box h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

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

.value-item {
text-align: center;
padding: 2rem;
}

.value-item svg {
margin: 0 auto 1rem;
color: var(--primary-color);
}

.value-item h3 {
margin-bottom: 0.5rem;
}

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

.contact-section {
padding: 4rem 2rem;
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
}

.contact-info {
}

.info-item {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}

.info-item svg {
flex-shrink: 0;
color: var(--primary-color);
}

.info-item h3 {
margin-bottom: 0.5rem;
font-size: 1.125rem;
}

.info-item p {
color: var(--text-light);
}

.info-item a {
color: var(--primary-color);
}

.social-links {
margin-top: 2rem;
}

.social-links h3 {
margin-bottom: 1rem;
}

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

.social-icons a {
color: var(--text-light);
transition: var(--transition);
}

.social-icons a:hover {
color: var(--primary-color);
}

.contact-form-container {
background: var(--bg-light);
padding: 2rem;
border-radius: 12px;
}

.contact-form-container h2 {
margin-bottom: 1.5rem;
}

.form-group {
margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: 8px;
font-family: inherit;
font-size: 1rem;
transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary-color);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
width: 100%;
padding: 1rem;
background: var(--primary-color);
color: white;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
}

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

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

.modal-content {
background: var(--bg-white);
margin: 10% auto;
padding: 2rem;
border-radius: 12px;
max-width: 500px;
text-align: center;
position: relative;
}

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

.modal-icon {
margin: 1rem auto;
}

.modal-content h2 {
margin-bottom: 1rem;
}

.modal-btn {
margin-top: 1.5rem;
padding: 0.75rem 2rem;
background: var(--primary-color);
color: white;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: 600;
}

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

.post-hero img {
width: 100%;
max-height: 500px;
object-fit: cover;
}

.post-container {
padding: 2rem;
}

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

.post-category {
display: inline-block;
background: var(--primary-color);
color: white;
padding: 0.25rem 0.75rem;
border-radius: 4px;
font-size: 0.875rem;
margin-bottom: 1rem;
}

.post-header h1 {
font-size: 2.5rem;
line-height: 1.2;
margin-bottom: 1rem;
}

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

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

.post-body .lead {
font-size: 1.25rem;
color: var(--text-light);
margin-bottom: 2rem;
line-height: 1.6;
}

.post-body h2 {
font-size: 1.875rem;
margin-top: 2.5rem;
margin-bottom: 1rem;
color: var(--text-dark);
}

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

.post-body p {
margin-bottom: 1.5rem;
}

.post-footer {
margin-top: 3rem;
padding-top: 2rem;
border-top: 2px solid var(--border-color);
}

.share-section h3 {
margin-bottom: 1rem;
}

.social-share {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
}

.social-share a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--bg-light);
color: var(--text-dark);
}

.social-share a:hover {
background: var(--primary-color);
color: white;
}

.back-to-blog {
display: inline-block;
color: var(--primary-color);
font-weight: 600;
}

.back-to-blog:hover {
text-decoration: underline;
}

.main-footer {
background: var(--text-dark);
color: white;
margin-top: 4rem;
}

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

.footer-section h4 {
margin-bottom: 1rem;
font-size: 1.125rem;
}

.footer-section p {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 0.5rem;
}

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

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

.footer-links a {
color: rgba(255, 255, 255, 0.7);
}

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

.registration-number {
font-size: 0.9rem;
margin-top: 1rem;
}

.footer-bottom {
background: rgba(0, 0, 0, 0.2);
padding: 1.5rem 2rem;
text-align: center;
}

.footer-bottom p {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}

.disclaimer {
margin-top: 0.5rem;
font-size: 0.85rem;
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--text-dark);
color: white;
padding: 2rem;
box-shadow: var(--shadow-lg);
z-index: 9999;
display: none;
}

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

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

.cookie-content h3 {
margin-bottom: 0.75rem;
}

.cookie-content p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 1rem;
}

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

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

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

.cookie-btn.reject {
background: var(--bg-light);
color: var(--text-dark);
}

.cookie-btn.customize {
background: transparent;
color: white;
border: 2px solid white;
}

.cookie-btn:hover {
transform: translateY(-2px);
}

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

@media (max-width: 768px) {
.primary-nav {
display: none;
}

.mobile-toggle {
display: flex;
}

.primary-nav.active {
display: block;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--bg-white);
box-shadow: var(--shadow-lg);
}

.primary-nav.active .nav-list {
flex-direction: column;
padding: 1rem 2rem;
gap: 0;
}

.primary-nav.active .nav-link {
display: block;
padding: 1rem 0;
border-bottom: 1px solid var(--border-color);
}

.hero-banner {
grid-template-columns: 1fr;
}

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

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

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

.about-content {
grid-template-columns: 1fr;
}

.post-header h1 {
font-size: 1.875rem;
}

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

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

@media print {
.main-header,
.main-footer,
.cookie-banner,
.social-share {
display: none;
}
}