/* Base Styles */
:root {
    --primary-color: #3a7bd5;
    --secondary-color: #00d2ff;
    --gradient-primary: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    --dark-color: #333333;
    --medium-color: #777777;
    --light-color: #f8f8f8;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.logo-container h1 {
    font-size: 1.5rem;
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
}

.navbar a:hover, .navbar a.active {
    color: var(--primary-color);
}

.navbar a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.language-switch button {
    background: none;
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.language-switch button:hover {
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.hero-content {
    flex: 1;
    text-align: left;
    padding-right: 2rem;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-color);
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    max-width: 500px;
    margin-left: auto;
}

/* Featured Posts Section */
.featured-posts {
    padding: 5rem 5%;
}

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

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

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

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

.post-content {
    padding: 1.5rem;
    text-align: left;
}

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

.post-content p {
    color: var(--medium-color);
    margin-bottom: 1.2rem;
}

.center-button {
    text-align: center;
    margin-top: 1.5rem;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

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

.service-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--medium-color);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
}

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

.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    text-align: left;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
}

.testimonial-content p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 5%;
    background: var(--gradient-primary);
    color: white;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

#newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

#newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    border: none;
    font-family: inherit;
}

#newsletter-form button {
    background-color: white;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: #cccccc;
    margin-bottom: 1rem;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-col ul li a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-col i {
    width: 20px;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #cccccc;
    font-size: 0.9rem;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1rem;
}

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.customize {
    background-color: #f8f9fa;
    color: var(--dark-color);
}

.reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-link {
    font-size: 0.8rem;
    text-decoration: underline;
    color: #cccccc;
}

/* Page Header */
.page-header {
    padding: 4rem 5%;
    background: var(--gradient-primary);
    color: white;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* About Page Styles */
.about-intro {
    padding: 5rem 5%;
}

.about-intro .container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

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

.our-values {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

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

.value-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.team-section {
    padding: 5rem 5%;
}

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

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

.team-card:hover {
    transform: translateY(-8px);
}

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

.team-card h3 {
    margin: 1.5rem 0 0.5rem;
}

.team-card p {
    color: var(--medium-color);
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--dark-color);
    transition: var(--transition);
}

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

.testimonials-about {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide:first-child {
    display: block;
}

.cta-section {
    padding: 5rem 5%;
    background: var(--gradient-primary);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

#cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

#cta-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    border: none;
    font-family: inherit;
}

/* Blog Page Styles */
.blog-header {
    position: relative;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.blog-content {
    padding: 5rem 5%;
}

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

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

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

.post-image {
    flex: 1;
    min-width: 300px;
}

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

.post-content {
    flex: 2;
    padding: 2rem;
    min-width: 300px;
    text-align: left;
}

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

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

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

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.categories-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.category-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info {
    text-align: left;
}

.contact-info p {
    color: var(--medium-color);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    padding-top: 0.3rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.social-contact {
    margin-top: 2.5rem;
}

.contact-form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(58, 123, 213, 0.2);
}

.full-width {
    grid-column: 1 / 3;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
}

.form-submit {
    grid-column: 1 / 3;
    text-align: center;
    margin-top: 1rem;
}

.map-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 5rem 5%;
}

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

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.faq-toggle i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    padding: 2.5rem;
    position: relative;
    text-align: center;
}

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

.thank-you-container i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-container h2 {
    margin-bottom: 1rem;
}

.thank-you-container p {
    margin-bottom: 2rem;
}

/* Single Post Styles */
.single-post {
    padding: 5rem 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.post-container {
    flex: 3;
    min-width: 300px;
}

.sidebar {
    flex: 1;
    min-width: 300px;
}

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

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

.post-featured-image {
    margin-bottom: 2.5rem;
}

.post-featured-image img {
    border-radius: var(--border-radius);
    width: 100%;
}

.post-content {
    text-align: left;
}

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

.post-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content h3 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
    padding-left: 2rem;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 0.8rem;
}

.tip-box {
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tip-box h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tip-box p {
    margin-bottom: 0;
}

.post-tags {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.post-tags span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-color);
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.post-author-bio {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

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

.author-info {
    flex: 1;
    text-align: left;
}

.author-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--medium-color);
    margin-bottom: 1rem;
}

.post-share {
    margin-top: 3rem;
    text-align: center;
}

.post-share h3 {
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.related-posts {
    margin-top: 5rem;
}

.related-posts h2 {
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.related-post h3 {
    padding: 1.2rem 1.5rem 0.5rem;
    font-size: 1.1rem;
    text-align: left;
}

.related-post p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-color);
    text-align: left;
}

.post-comments {
    margin-top: 5rem;
    text-align: left;
}

.post-comments h2 {
    margin-bottom: 2.5rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-header h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.admin-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-left: 0.5rem;
    font-weight: 600;
    vertical-align: middle;
}

.comment-date {
    font-size: 0.9rem;
    color: var(--medium-color);
}

.comment-content p {
    margin-bottom: 1rem;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.admin-comment {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.comment-form {
    margin-top: 4rem;
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

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

.sidebar-widget h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: left;
}

.author-card {
    text-align: center;
}

.author-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
}

.author-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.author-card p {
    margin-bottom: 1.5rem;
}

.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.popular-posts-list li a {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--dark-color);
}

.popular-posts-list img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.popular-posts-list h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-align: left;
}

.post-date {
    color: var(--medium-color);
    font-size: 0.8rem;
}

.category-list li {
    margin-bottom: 1rem;
    text-align: left;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
}

.category-list a:hover {
    color: var(--primary-color);
}

.newsletter-widget {
    background: var(--gradient-primary);
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius);
    border: none;
    font-family: inherit;
}

.sidebar-newsletter-form button {
    background-color: white;
    color: var(--primary-color);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tags-cloud a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--dark-color);
}

.tags-cloud a:hover {
    background-color: var(--primary-color);
    color: white;
}

.calculator-form {
    text-align: left;
}

.calculator-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.calculator-form input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 1.2rem;
    font-family: inherit;
}

.calculator-form button {
    width: 100%;
    margin-top: 0.5rem;
}

.calculation-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
}

.calculation-result h4 {
    margin-bottom: 1rem;
}

.calculation-result p {
    margin-bottom: 0.5rem;
}

.calculation-result .disclaimer {
    font-size: 0.8rem;
    color: var(--medium-color);
    margin-top: 1rem;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    color: var(--dark-color);
}

.resource-item:hover {
    background-color: var(--primary-color);
    color: white;
}

.resource-item i {
    font-size: 1.5rem;
}

.resource-details {
    text-align: left;
}

.resource-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.resource-details span {
    font-size: 0.8rem;
}

.book-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-card img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.book-details {
    text-align: left;
}

.book-details h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.book-details p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--medium-color);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.cta-widget {
    background: var(--gradient-primary);
    color: white;
}

.cta-widget h3 {
    color: white;
}

.download-widget a {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.fund-progress {
    margin-top: 1.5rem;
}

.progress-label {
    text-align: left;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress-bar {
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
}

.progress-text {
    text-align: right;
    font-size: 0.9rem;
    color: var(--medium-color);
}

.tip-text {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--medium-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-image img {
        margin: 0 auto;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 99;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    #newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-container, .testimonial-container, .values-container {
        grid-template-columns: 1fr;
    }
    
    .about-intro .container {
        flex-direction: column;
    }
    
    .about-content, .about-image {
        min-width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: auto;
    }
    
    .form-submit {
        grid-column: auto;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .comment {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-date {
        margin-top: 0.3rem;
    }
}

@media (max-width: 576px) {
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
    }
}
