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

:root {
    --primary-color: #2c7a3f;
    --secondary-color: #1a4d2e;
    --accent-color: #4caf50;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

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

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

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

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

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    padding: 15px 0;
}

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

.brand-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hero-banner {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,122,63,0.85), rgba(26,77,46,0.85));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(76,175,80,0.3);
}

.btn-primary-hero:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.4);
}

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

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

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

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

.statistics-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--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.8;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.recent-insights {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: -40px auto 60px;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-preview-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.preview-content {
    padding: 30px;
}

.category-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.preview-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

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

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

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

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

.btn-secondary-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.newsletter-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 60px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.newsletter-text {
    flex: 1;
    color: var(--white);
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

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

.email-input-field {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.btn-submit-newsletter {
    padding: 15px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

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

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

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

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.footer-description {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 15px;
}

.company-registration {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

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

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.9;
}

.contact-info-list i {
    color: var(--accent-color);
    margin-top: 3px;
}

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

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    padding: 30px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text-section {
    flex: 1;
}

.cookie-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cookie-description {
    color: var(--text-light);
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-decline,
.btn-cookie-customize {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.btn-cookie-decline:hover {
    background-color: #d0d0d0;
}

.btn-cookie-customize {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.cookie-policy-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

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

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

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

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

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

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

.btn-close-modal {
    padding: 12px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.page-header-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

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

.page-header-content p {
    font-size: 1.2rem;
}

.blog-listing-section {
    padding: 80px 0;
}

.blog-posts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.blog-full-card {
    display: flex;
    gap: 30px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image-container {
    position: relative;
    flex: 0 0 400px;
}

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

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

.blog-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.post-date,
.reading-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.btn-read-article {
    align-self: flex-start;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.about-mission-section {
    padding: 80px 0;
}

.mission-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.mission-text-block {
    flex: 1;
}

.mission-paragraph {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.value-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.mission-image-block {
    flex: 0 0 500px;
}

.mission-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: -40px auto 60px;
}

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

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

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

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--accent-color);
}

.team-member-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-position {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-story-section {
    padding: 80px 0;
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

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

.cta-box-about {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-box-about h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.btn-cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.contact-main-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-panel {
    flex: 0 0 400px;
}

.contact-intro {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

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

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

.contact-icon-wrapper i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.contact-form-panel {
    flex: 1;
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label-contact {
    font-weight: 600;
    color: var(--text-dark);
}

.form-input-contact,
.form-textarea-contact {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-textarea-contact {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

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

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

.subscription-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.subscription-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.subscription-box h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.subscription-form-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.subscription-email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.subscription-email-input:focus {
    border-color: var(--primary-color);
}

.btn-subscribe-inline {
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-subscribe-inline:hover {
    background-color: var(--secondary-color);
}

.subscription-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.post-single-layout {
    background-color: var(--white);
}

.post-hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

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

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.post-content-wrapper {
    padding: 60px 0;
}

.post-header-info {
    margin-bottom: 40px;
}

.post-category-label {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.post-main-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
}

.post-metadata {
    display: flex;
    gap: 25px;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

.post-intro-paragraph {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
    font-weight: 400;
}

.post-body-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.post-body-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 18px;
    font-weight: 600;
}

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

.post-body-content ul,
.post-body-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: var(--text-light);
}

.post-body-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.post-footer-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.post-tags-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

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

.post-tag {
    display: inline-block;
    padding: 8px 18px;
    background-color: var(--background-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.post-tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.post-navigation {
    margin-top: 50px;
    text-align: center;
}

.btn-back-to-blog {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-to-blog:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

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

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

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

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

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

    .blog-preview-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-wrapper {
        flex-direction: column;
        padding: 40px 30px;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .cookie-content-wrapper {
        flex-direction: column;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }

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

    .blog-full-card {
        flex-direction: column;
    }

    .blog-image-container {
        flex: none;
        height: 250px;
    }

    .blog-card-content {
        padding: 30px 20px;
    }

    .mission-content-wrapper {
        flex-direction: column;
    }

    .mission-image-block {
        flex: none;
    }

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

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

    .contact-layout {
        flex-direction: column;
    }

    .contact-info-panel {
        flex: none;
    }

    .subscription-form-inline {
        flex-direction: column;
    }

    .post-main-title {
        font-size: 2rem;
    }

    .post-metadata {
        flex-direction: column;
        gap: 10px;
    }

    .post-intro-paragraph {
        font-size: 1.1rem;
    }

    .post-body-content h2 {
        font-size: 1.6rem;
    }
}