:root {
--primary-color: #2c5f7d;
--secondary-color: #4a9eba;
--accent-color: #f39c12;
--success-color: #27ae60;
--danger-color: #e74c3c;
--dark-color: #2c3e50;
--light-color: #ecf0f1;
--text-color: #333;
--text-light: #7f8c8d;
--border-color: #bdc3c7;
--bg-color: #ffffff;
--bg-secondary: #f8f9fa;
--shadow: 0 2px 10px rgba(0,0,0,0.1);
--shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
--transition: all 0.3s ease;
--border-radius: 8px;
--font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
scroll-behavior: smooth;
}

body {
font-family: var(--font-primary);
color: var(--text-color);
background-color: var(--bg-color);
line-height: 1.6;
overflow-x: hidden;
}

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

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

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

ul {
list-style: none;
}

.btn {
display: inline-block;
padding: 12px 30px;
border-radius: var(--border-radius);
font-weight: 600;
text-align: center;
cursor: pointer;
border: none;
transition: var(--transition);
}

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

.btn-primary:hover {
background-color: #1e4357;
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
background-color: white;
color: var(--primary-color);
}

.btn-cta {
background: linear-gradient(135deg, var(--accent-color), #e67e22);
color: white;
font-size: 1.1rem;
padding: 15px 40px;
}

.btn-cta:hover {
transform: translateY(-3px);
box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
}

.theme-switcher {
position: fixed;
top: 100px;
right: 20px;
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: var(--shadow-lg);
z-index: 999;
transition: var(--transition);
}

.theme-switcher:hover {
transform: rotate(180deg) scale(1.1);
}

.theme-switcher i {
color: white;
font-size: 1.3rem;
}

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

.navbar {
padding: 15px 0;
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.nav-brand {
display: flex;
align-items: center;
gap: 12px;
}

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

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

.nav-toggle {
display: none;
flex-direction: column;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}

.nav-toggle span {
width: 25px;
height: 3px;
background-color: var(--primary-color);
margin: 3px 0;
transition: var(--transition);
}

.nav-menu {
display: flex;
gap: 10px;
}

.nav-link {
padding: 10px 18px;
color: var(--text-color);
font-weight: 500;
border-radius: var(--border-radius);
display: flex;
align-items: center;
gap: 6px;
}

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

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

.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
background-size: cover;
opacity: 0.3;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
}

.hero-content {
position: relative;
z-index: 2;
text-align: center;
padding: 80px 0;
}

.hero-title {
font-size: 3rem;
font-weight: 800;
margin-bottom: 20px;
animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.95;
animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
animation: fadeInUp 0.8s ease 0.4s backwards;
}

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

.features-section,
.courses-preview,
.stats-section,
.testimonials-section,
.cta-section,
.blog-section,
.terminology-section,
.about-intro,
.values-section,
.team-section,
.timeline-section,
.contact-section,
.newsletter-section {
padding: 80px 0;
}

.section-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 20px;
color: var(--dark-color);
position: relative;
padding-bottom: 15px;
}

.section-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
border-radius: 2px;
}

.section-subtitle {
text-align: center;
color: var(--text-light);
margin-bottom: 50px;
font-size: 1.1rem;
}

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

.feature-card,
.value-card {
text-align: center;
padding: 40px 25px;
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
transition: var(--transition);
}

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

.feature-icon,
.value-icon {
width: 80px;
height: 80px;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: white;
}

.feature-card h3,
.value-card h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--dark-color);
}

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

.course-card {
background: white;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

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

.course-img {
width: 100%;
height: 220px;
object-fit: cover;
}

.course-content {
padding: 25px;
}

.course-content h3 {
font-size: 1.3rem;
margin-bottom: 12px;
color: var(--dark-color);
}

.course-content p {
color: var(--text-light);
margin-bottom: 20px;
}

.btn-course {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--primary-color);
font-weight: 600;
transition: var(--transition);
}

.btn-course:hover {
gap: 12px;
color: var(--secondary-color);
}

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

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

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

.stat-icon {
font-size: 3rem;
margin-bottom: 15px;
opacity: 0.9;
}

.stat-number {
display: block;
font-size: 2.5rem;
font-weight: 800;
margin-bottom: 8px;
}

.stat-label {
font-size: 1.1rem;
opacity: 0.9;
}

.testimonials-section {
background-color: var(--bg-secondary);
}

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

.testimonial-card {
background: white;
padding: 30px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

.testimonial-stars {
color: var(--accent-color);
margin-bottom: 15px;
}

.testimonial-text {
font-style: italic;
color: var(--text-color);
margin-bottom: 20px;
line-height: 1.8;
}

.testimonial-author strong {
display: block;
color: var(--dark-color);
margin-bottom: 5px;
}

.testimonial-author span {
color: var(--text-light);
font-size: 0.9rem;
}

.cta-section {
background: linear-gradient(135deg, rgba(44, 95, 125, 0.95), rgba(74, 158, 186, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
color: white;
text-align: center;
}

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

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

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

.page-hero h1 {
font-size: 2.8rem;
margin-bottom: 15px;
}

.page-hero p {
font-size: 1.2rem;
opacity: 0.95;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 35px;
margin-top: 50px;
}

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

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

.post-image {
position: relative;
overflow: hidden;
}

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

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

.post-category {
position: absolute;
top: 15px;
left: 15px;
background-color: var(--accent-color);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}

.post-content {
padding: 25px;
}

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

.post-meta span {
display: flex;
align-items: center;
gap: 5px;
}

.post-content h2 {
margin-bottom: 12px;
}

.post-content h2 a {
color: var(--dark-color);
}

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

.post-content > p {
color: var(--text-light);
margin-bottom: 20px;
line-height: 1.8;
}

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

.read-more:hover {
gap: 12px;
}

.newsletter-section {
background-color: var(--bg-secondary);
}

.newsletter-box {
background: white;
padding: 50px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
flex-wrap: wrap;
}

.newsletter-content h3 {
font-size: 1.8rem;
color: var(--dark-color);
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 10px;
}

.newsletter-form {
display: flex;
gap: 10px;
flex: 1;
min-width: 300px;
}

.newsletter-form input {
flex: 1;
padding: 12px 20px;
border: 2px solid var(--border-color);
border-radius: var(--border-radius);
font-size: 1rem;
}

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

.search-box {
position: relative;
max-width: 500px;
margin: 0 auto 40px;
}

.search-box i {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: var(--text-light);
}

.search-box input {
width: 100%;
padding: 15px 15px 15px 45px;
border: 2px solid var(--border-color);
border-radius: var(--border-radius);
font-size: 1rem;
}

.search-box input:focus {
outline: none;
border-color: var(--primary-color);
}

.alphabet-filter {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 40px;
}

.alpha-btn {
padding: 8px 15px;
background: white;
border: 2px solid var(--border-color);
border-radius: var(--border-radius);
cursor: pointer;
font-weight: 600;
transition: var(--transition);
}

.alpha-btn:hover,
.alpha-btn.active {
background-color: var(--primary-color);
color: white;
border-color: var(--primary-color);
}

.terms-container {
display: grid;
gap: 20px;
}

.term-card {
background: white;
padding: 25px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
border-left: 4px solid var(--primary-color);
transition: var(--transition);
}

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

.term-title {
color: var(--primary-color);
font-size: 1.3rem;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}

.term-definition {
color: var(--text-color);
line-height: 1.8;
}

.about-content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: center;
margin-top: 50px;
}

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

.about-text p {
color: var(--text-color);
line-height: 1.8;
margin-bottom: 15px;
}

.mission-points {
margin-top: 30px;
display: grid;
gap: 15px;
}

.mission-point {
display: flex;
align-items: center;
gap: 12px;
color: var(--text-color);
}

.mission-point i {
color: var(--success-color);
font-size: 1.2rem;
}

.about-image img {
border-radius: var(--border-radius);
box-shadow: var(--shadow-lg);
}

.values-section {
background-color: var(--bg-secondary);
}

.team-member {
background: white;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
text-align: center;
}

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

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

.team-member h3 {
padding: 20px 20px 5px;
color: var(--dark-color);
font-size: 1.3rem;
}

.member-role {
color: var(--primary-color);
font-weight: 600;
padding: 0 20px;
margin-bottom: 10px;
}

.member-bio {
padding: 0 20px 25px;
color: var(--text-light);
line-height: 1.6;
}

.timeline {
position: relative;
max-width: 800px;
margin: 50px auto;
}

.timeline::before {
content: '';
position: absolute;
left: 50%;
transform: translateX(-50%);
width: 4px;
height: 100%;
background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
display: flex;
margin-bottom: 50px;
position: relative;
}

.timeline-item:nth-child(odd) {
flex-direction: row-reverse;
}

.timeline-date {
flex: 1;
text-align: center;
font-weight: 700;
font-size: 1.5rem;
color: var(--primary-color);
padding: 20px;
}

.timeline-content {
flex: 1;
background: white;
padding: 25px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

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

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

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

.contact-info h2,
.contact-form-wrapper h2 {
font-size: 2rem;
color: var(--dark-color);
margin-bottom: 20px;
}

.contact-info > p {
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.8;
}

.contact-details {
display: grid;
gap: 25px;
}

.contact-item {
display: flex;
gap: 20px;
}

.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon i {
color: white;
font-size: 1.2rem;
}

.contact-text h4 {
color: var(--dark-color);
margin-bottom: 5px;
}

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

.contact-form {
display: grid;
gap: 20px;
}

.form-group {
display: grid;
gap: 8px;
}

.form-group label {
font-weight: 600;
color: var(--dark-color);
display: flex;
align-items: center;
gap: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 12px 15px;
border: 2px solid var(--border-color);
border-radius: var(--border-radius);
font-size: 1rem;
font-family: inherit;
transition: var(--transition);
}

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

.checkbox-label {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
width: 18px;
height: 18px;
cursor: pointer;
}

.map-section {
padding: 80px 0;
background-color: var(--bg-secondary);
}

.map-container {
margin-top: 40px;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-lg);
}

.faq-preview {
padding: 80px 0;
}

.faq-container {
max-width: 800px;
margin: 50px auto 0;
}

.faq-item {
background: white;
margin-bottom: 15px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
overflow: hidden;
}

.faq-question {
padding: 20px 25px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}

.faq-question:hover {
background-color: var(--bg-secondary);
}

.faq-question h4 {
color: var(--dark-color);
font-size: 1.1rem;
}

.faq-question i {
color: var(--primary-color);
transition: var(--transition);
}

.faq-item.active .faq-question i {
transform: rotate(180deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
}

.faq-answer p {
padding: 0 25px 20px;
color: var(--text-light);
line-height: 1.8;
}

.success-modal {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6);
z-index: 9999;
align-items: center;
justify-content: center;
}

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

.modal-content {
background: white;
padding: 50px;
border-radius: var(--border-radius);
text-align: center;
max-width: 500px;
animation: modalSlideIn 0.4s ease;
}

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

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

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

.modal-content p {
color: var(--text-light);
margin-bottom: 30px;
line-height: 1.8;
}

.post-single {
padding: 50px 0;
}

.post-header {
max-width: 900px;
margin: 0 auto 40px;
}

.post-meta-info {
display: flex;
gap: 20px;
margin-bottom: 20px;
flex-wrap: wrap;
}

.post-meta-info span {
display: flex;
align-items: center;
gap: 8px;
color: var(--text-light);
font-size: 0.95rem;
}

.post-header h1 {
font-size: 2.8rem;
color: var(--dark-color);
margin-bottom: 25px;
line-height: 1.3;
}

.post-author {
display: flex;
align-items: center;
gap: 15px;
}

.author-img {
width: 60px;
height: 60px;
border-radius: 50%;
object-fit: cover;
}

.author-info strong {
display: block;
color: var(--dark-color);
font-size: 1.1rem;
}

.author-info span {
color: var(--text-light);
font-size: 0.9rem;
}

.post-featured-image {
max-width: 1200px;
margin: 0 auto 50px;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow-lg);
}

.post-featured-image img {
width: 100%;
height: auto;
}

.post-content-wrapper {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 300px;
gap: 50px;
}

.post-content {
background: white;
padding: 40px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
}

.lead {
font-size: 1.2rem;
color: var(--text-color);
line-height: 1.8;
margin-bottom: 30px;
font-weight: 500;
}

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

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

.post-content h4 {
font-size: 1.2rem;
color: var(--dark-color);
margin: 25px 0 12px;
}

.post-content p {
color: var(--text-color);
line-height: 1.9;
margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
margin: 20px 0;
padding-left: 30px;
}

.post-content li {
color: var(--text-color);
line-height: 1.8;
margin-bottom: 10px;
list-style: disc;
}

.post-content ol li {
list-style: decimal;
}

.highlight-box {
background: linear-gradient(135deg, rgba(44, 95, 125, 0.05), rgba(74, 158, 186, 0.05));
border-left: 4px solid var(--primary-color);
padding: 30px;
margin: 30px 0;
border-radius: var(--border-radius);
}

.highlight-box h4 {
color: var(--primary-color);
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 10px;
}

.post-cta {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 40px;
border-radius: var(--border-radius);
text-align: center;
margin-top: 50px;
}

.post-cta h3 {
font-size: 1.8rem;
margin-bottom: 15px;
}

.post-cta p {
font-size: 1.1rem;
margin-bottom: 25px;
opacity: 0.95;
}

.post-sidebar {
position: sticky;
top: 100px;
height: fit-content;
}

.sidebar-widget {
background: white;
padding: 25px;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
margin-bottom: 25px;
}

.sidebar-widget h3 {
color: var(--dark-color);
margin-bottom: 20px;
font-size: 1.3rem;
}

.recent-posts,
.categories {
display: grid;
gap: 12px;
}

.recent-posts a,
.categories a {
color: var(--text-color);
padding: 10px;
display: block;
border-radius: 5px;
transition: var(--transition);
}

.recent-posts a:hover,
.categories a:hover {
background-color: var(--bg-secondary);
color: var(--primary-color);
padding-left: 15px;
}

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

.cta-widget h3 {
color: white;
}

.cta-widget p {
margin-bottom: 20px;
opacity: 0.95;
}

.related-posts {
padding: 80px 0;
background-color: var(--bg-secondary);
}

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

.related-card {
background: white;
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}

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

.related-card img {
width: 100%;
height: 200px;
object-fit: cover;
}

.related-card h3 {
padding: 20px 20px 10px;
}

.related-card h3 a {
color: var(--dark-color);
}

.related-card h3 a:hover {
color: var(--primary-color);
}

.related-card p {
padding: 0 20px 20px;
color: var(--text-light);
}

.main-footer {
background-color: var(--dark-color);
color: white;
padding: 60px 0 20px;
}

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

.footer-col h4 {
font-size: 1.3rem;
margin-bottom: 20px;
color: white;
}

.footer-col p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.8;
margin-bottom: 20px;
}

.footer-contact p {
display: flex;
align-items: flex-start;
gap: 10px;
margin-bottom: 12px;
color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
margin-top: 3px;
}

.footer-links {
display: grid;
gap: 10px;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
transition: var(--transition);
}

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

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

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
z-index: 9998;
transform: translateY(100%);
transition: transform 0.4s ease;
}

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

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

.cookie-text h4 {
color: var(--dark-color);
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}

.cookie-text p {
color: var(--text-color);
line-height: 1.8;
margin-bottom: 20px;
}

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

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

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

.accept-all {
background-color: var(--success-color);
color: white;
}

.accept-all:hover {
background-color: #229954;
}

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

.customize:hover {
background-color: #1e4357;
}

.decline {
background-color: var(--border-color);
color: var(--text-color);
}

.decline:hover {
background-color: #95a5a6;
}

.cookie-settings {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6);
z-index: 9999;
align-items: center;
justify-content: center;
}

.cookie-settings.active {
display: flex;
}

.cookie-settings-content {
background: white;
padding: 40px;
border-radius: var(--border-radius);
max-width: 600px;
max-height: 90vh;
overflow-y: auto;
}

.cookie-settings-content h3 {
color: var(--dark-color);
margin-bottom: 25px;
font-size: 1.8rem;
}

.cookie-option {
margin-bottom: 25px;
padding-bottom: 25px;
border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-of-type {
border-bottom: none;
}

.cookie-option label {
display: flex;
align-items: flex-start;
gap: 15px;
cursor: pointer;
}

.cookie-option input[type="checkbox"] {
width: 20px;
height: 20px;
margin-top: 2px;
cursor: pointer;
}

.cookie-option span {
font-weight: 600;
color: var(--dark-color);
display: block;
margin-bottom: 8px;
}

.cookie-option p {
color: var(--text-light);
line-height: 1.6;
margin: 0;
}

.cookie-settings-buttons {
display: flex;
gap: 15px;
margin-top: 30px;
}

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

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

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

.hero-title {
font-size: 2.2rem;
}

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

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

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

.post-sidebar {
position: static;
}

.timeline::before {
left: 30px;
}

.timeline-item,
.timeline-item:nth-child(odd) {
flex-direction: row;
padding-left: 60px;
}

.timeline-date {
position: absolute;
left: 0;
width: 60px;
padding: 10px;
}

.newsletter-box {
flex-direction: column;
text-align: center;
}

.newsletter-form {
width: 100%;
}
}

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

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

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

.hero-buttons .btn {
width: 100%;
}

.features-grid,
.courses-grid,
.values-grid,
.team-grid,
.blog-grid {
grid-template-columns: 1fr;
}

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

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

.newsletter-form {
flex-direction: column;
}

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

.post-content {
padding: 25px;
}

.alphabet-filter {
gap: 5px;
}

.alpha-btn {
padding: 6px 10px;
font-size: 0.9rem;
}

.cookie-content {
padding: 20px;
}

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

.btn-cookie {
width: 100%;
}

.cookie-settings-content {
padding: 25px;
margin: 20px;
}
}