/* Global Variables */
:root {
    --primary-color: #4e6e5d;
    --primary-light: #6b9080;
    --primary-dark: #354f52;
    --accent-color: #e8a87c;
    --light-color: #f8f9fa;
    --dark-color: #1a2a2d;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --success-color: #4caf50;
    --danger-color: #dc3545;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Merriweather', serif;
    --transition: all 0.3s ease;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

button, .btn {
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    transition: var(--transition);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    font-weight: 700;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 2.4rem;
    }
    
    h4 {
        font-size: 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    box-shadow: var(--shadow);
}

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

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

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

.btn-small {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
}

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

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

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 2.5rem;
    height: 0.3rem;
    background-color: var(--primary-dark);
    transition: var(--transition);
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Hero Section */
.hero {
    padding: 15rem 0 8rem;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 144, 128, 0.1) 0%, rgba(78, 110, 93, 0.1) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 60rem;
}

.hero-content h1 {
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--gray-color);
}

.hero-image {
    flex: 1;
    max-width: 50rem;
    position: relative;
}

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

@media screen and (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.feature-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-card .icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(107, 144, 128, 0.1);
    border-radius: 50%;
    margin: 0 auto 2rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

/* Recent Posts Section */
.recent-posts {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 20rem;
    overflow: hidden;
}

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

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

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.read-more {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.view-all {
    text-align: center;
}

/* Expert Interview Section */
.expert-interview {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.expert-interview h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.interview-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow);
}

.expert-photo {
    flex-shrink: 0;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    overflow: hidden;
}

.expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-text h3 {
    margin-bottom: 1rem;
}

.expert-title {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.interview-qa .question {
    font-weight: 700;
    margin-bottom: 1rem;
}

.interview-qa .answer {
    margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
    .interview-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .expert-photo {
        width: 15rem;
        height: 15rem;
    }
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.cta h2, .cta p {
    color: var(--light-color);
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 50rem;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1.6rem;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 1.2rem 2.4rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: #d99b73;
}

@media screen and (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }
    
    .newsletter-form button {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: var(--light-color);
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    height: 5rem;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    margin-bottom: 0.5rem;
}

.footer-links h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

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

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Page Banner */
.page-banner {
    padding: 15rem 0 6rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.page-banner h1, .page-banner p {
    color: var(--light-color);
}

.page-banner h1 {
    margin-bottom: 1.5rem;
}

.page-banner p {
    font-size: 1.8rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Page Styles */
.blog-content {
    padding: 8rem 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.blog-card {
    display: flex;
    gap: 3rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    flex: 0 0 35%;
    overflow: hidden;
}

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

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

.blog-text {
    flex: 1;
    padding: 3rem 3rem 3rem 0;
}

.blog-text .date {
    display: inline-block;
    font-size: 1.4rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.blog-text h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.blog-text p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        height: 25rem;
    }
    
    .blog-text {
        padding: 2rem;
    }
}

/* Newsletter Section */
.newsletter {
    padding: 8rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1.5rem;
}

.newsletter p {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray-color);
}

/* About Page Styles */
.about-intro {
    padding: 8rem 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-image {
    flex: 0 0 45%;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .about-image {
        flex: 0 0 100%;
    }
}

.our-values {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.our-values h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.value-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.value-card .icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(107, 144, 128, 0.1);
    border-radius: 50%;
    margin: 0 auto 2rem;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.value-card p {
    color: var(--gray-color);
}

.team {
    padding: 8rem 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover img {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.team-member p:last-of-type {
    color: var(--gray-color);
}

.testimonials {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 300px;
}

.testimonial .quote {
    margin-bottom: 2rem;
    color: var(--primary-light);
}

.testimonial p {
    font-style: italic;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author p {
    font-style: normal;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-content {
    padding: 8rem 0;
}

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

.contact-info h2 {
    margin-bottom: 3rem;
}

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

.info-item .icon {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(107, 144, 128, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

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

.info-item .text p {
    color: var(--gray-color);
    margin-bottom: 0;
}

.social-box {
    margin-top: 4rem;
}

.social-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(107, 144, 128, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

.contact-form {
    background-color: #fff;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.5rem;
}

.contact-form button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    background-color: var(--primary-dark);
}

@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.map-section {
    padding: 4rem 0 8rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-section {
    padding: 8rem 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.faq-item {
    background-color: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    width: 90%;
    max-width: 50rem;
}

.close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.8rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

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

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    width: 6rem;
    height: 6rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.thank-you-message h2 {
    margin-bottom: 1.5rem;
}

.thank-you-message p {
    margin-bottom: 3rem;
    color: var(--gray-color);
}

.close-modal {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
}

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

/* Blog Post Styles */
.post-header {
    padding: 15rem 0 6rem;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.post-meta span {
    font-size: 1.4rem;
}

.post-header h1 {
    color: var(--light-color);
    margin-bottom: 0;
}

.post-content {
    padding: 8rem 0;
}

.post-body {
    max-width: 80rem;
    margin: 0 auto;
}

.featured-image {
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-body h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-body h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.post-body h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.post-body p {
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.post-body ul, .post-body ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.post-body li {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.post-body ul li {
    list-style-type: disc;
}

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

.post-body ul li ul, .post-body ol li ol {
    margin-top: 1rem;
    margin-bottom: 0;
}

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

.post-tags span {
    display: inline-block;
    font-weight: 600;
    margin-right: 1rem;
}

.post-tags a {
    display: inline-block;
    background-color: rgba(107, 144, 128, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 5rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

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

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

.social-share {
    display: flex;
    gap: 1.5rem;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(107, 144, 128, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.author-bio {
    margin-top: 6rem;
    display: flex;
    gap: 3rem;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: var(--border-radius);
}

.author-image {
    flex-shrink: 0;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

.author-info h4 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.author-info p {
    margin-bottom: 0;
}

@media screen and (max-width: 576px) {
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

.related-posts h3 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

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

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

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.related-post h4 {
    padding: 1.5rem;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.related-post .read-more {
    display: block;
    padding: 0 1.5rem 1.5rem;
}

/* Special Content Boxes */
.example-box, .case-study, .research-box, .prompt-box, .action-plan {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    border-left: 4px solid var(--primary-color);
}

.example-box h4, .case-study h3, .research-box h3, .action-plan h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.prompt-box ol {
    counter-reset: prompt-counter;
    list-style-type: none;
    padding-left: 0;
}

.prompt-box ol li {
    counter-increment: prompt-counter;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 3.5rem;
}

.prompt-box ol li:before {
    content: counter(prompt-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.prompt-box ol li strong {
    color: var(--primary-dark);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100rem;
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    z-index: 1500;
    display: none;
}

.cookie-consent.active {
    display: block;
}

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

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

.cookie-buttons button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background-color: var(--primary-dark);
}

.btn-customize {
    background-color: var(--light-gray);
    color: var(--dark-color);
}

.btn-customize:hover {
    background-color: #d1d6d9;
}

.btn-decline {
    background-color: transparent;
    color: var(--gray-color);
    border: 1px solid var(--light-gray);
}

.btn-decline:hover {
    background-color: var(--light-gray);
}

.cookie-more {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.4rem;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --light-color: #1a2a2d;
        --dark-color: #f8f9fa;
        --light-gray: #354f52;
        --gray-color: #adb5bd;
    }
    
    body {
        background-color: #1a2a2d;
    }
    
    .feature-card, .post-card, .blog-card, .value-card, .testimonial, 
    .contact-form, .faq-item, .modal-content, .related-post {
        background-color: #263942;
    }
    
    .example-box, .case-study, .research-box, .prompt-box, .action-plan, .author-bio {
        background-color: #263942;
    }
    
    .cookie-consent {
        background-color: #263942;
    }
    
    .btn-customize {
        background-color: #354f52;
        color: var(--light-color);
    }
    
    .btn-customize:hover {
        background-color: #2c3f42;
    }
    
    header, .newsletter-form input {
        background-color: #1a2a2d;
    }
    
    .hero, .newsletter, .about-intro, .team, .contact-content, .post-content {
        background-color: #1a2a2d;
    }
    
    .features, .recent-posts, .our-values, .testimonials, .faq-section {
        background-color: #1e2c30;
    }
}
