/* Base Styles */
:root {
    --primary-color: #5d45e0;
    --primary-dark: #4934c7;
    --primary-light: #8471e8;
    --secondary-color: #3cb3b8;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-alt: #f6f8fd;
    --background-dark: #eaeef9;
    --border-color: #e0e6f1;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --font-main: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    --font-heading: 'Poppins', 'Inter', 'Segoe UI', sans-serif;
}

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

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

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul, ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

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

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

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

.btn-secondary:hover {
    background-color: darken(var(--secondary-color), 10%);
}

/* Header and Navigation */
header {
    background-color: var(--background-color);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo img {
    height: 4.5rem;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 3rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.6rem;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
}

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

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

nav ul li a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--background-alt);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 69, 224, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 70rem;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--background-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: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

/* Daily Inspiration Section */
.daily-inspiration {
    padding: 8rem 0;
    background-color: var(--background-alt);
}

.inspiration-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.inspiration-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.inspiration-text {
    flex: 1;
}

.inspiration-text h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.inspiration-text p {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.quote-author {
    font-style: italic;
    font-weight: 500;
    color: var(--text-color);
}

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

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

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

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

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

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

.post-content {
    padding: 2rem;
}

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

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

.read-more {
    display: inline-block;
    font-weight: 500;
    position: relative;
}

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

.read-more:hover:after {
    margin-left: 1rem;
}

.center {
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background-color: var(--background-dark);
    text-align: center;
}

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

.newsletter p {
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 60rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.6rem;
}

/* Footer */
footer {
    background-color: #222639;
    color: #ffffff;
    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: 4.5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

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

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

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-contact h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.footer-contact p svg {
    margin-right: 1rem;
}

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

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

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    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);
    font-size: 1.4rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    display: none;
    z-index: 1000;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-content p {
    margin-bottom: 0;
}

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

.btn-cookie {
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

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

.btn-cookie.reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

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

.cookie-policy-link {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 1.4rem;
}

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

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

.page-banner p {
    color: var(--text-light);
    font-size: 1.8rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.4rem;
}

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

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

/* Blog Post Page Styles */
.blog-post {
    padding: 6rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-light);
    font-size: 1.6rem;
}

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

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

.post-intro {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.post-content h2 {
    font-size: 2.8rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

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

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 3rem 0;
    color: var(--text-light);
    font-style: italic;
}

.post-content blockquote p {
    font-size: 1.8rem;
}

.post-content blockquote cite {
    display: block;
    font-weight: 500;
    margin-top: 1rem;
    color: var(--text-color);
}

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

.post-tags span {
    font-weight: 500;
    color: var(--text-color);
    margin-right: 1rem;
}

.post-tags a {
    display: inline-block;
    background-color: var(--background-alt);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 3rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

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

.share-post {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.share-post span {
    font-weight: 500;
    margin-right: 1.5rem;
}

.share-post a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    background-color: var(--background-alt);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--text-color);
    transition: var(--transition);
}

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

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

.author-image {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.author-info p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--background-color);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.related-posts {
    margin-bottom: 4rem;
}

.related-posts h3 {
    margin-bottom: 3rem;
    text-align: center;
}

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

.related-post {
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
}

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

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

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

.post-navigation {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    background-color: var(--background-alt);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.back-to-blog svg {
    margin-right: 0.8rem;
}

.back-to-blog:hover {
    background-color: var(--primary-light);
    color: white;
}

/* About Page Styles */
.about-story {
    padding: 6rem 0;
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.story-text {
    flex: 1;
}

.mission-values {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.mission-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.mission-statement {
    margin-bottom: 3rem;
}

.values ul {
    list-style: none;
    margin-left: 0;
}

.values ul li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.values ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.team {
    padding: 6rem 0;
}

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

.team-intro {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 5rem;
    color: var(--text-light);
    font-size: 1.8rem;
}

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

.team-card {
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding-bottom: 2rem;
}

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

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

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

.team-card p {
    color: var(--text-light);
    padding: 0 2rem;
    margin-bottom: 1rem;
}

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

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

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

.stats {
    padding: 6rem 0;
    background-color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stat-item p {
    font-size: 1.8rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.testimonials {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

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

.testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 3rem;
}

.testimonial {
    flex: 0 0 calc(50% - 1rem);
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
}

.testimonial-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 0;
}

.cta {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--background-color);
}

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

.cta p {
    max-width: 60rem;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

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

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

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

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 4rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.contact-icon {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    background-color: var(--background-alt);
    border-radius: 50%;
    color: var(--primary-color);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
}

.contact-form-container {
    background-color: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
}

.map-section {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

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

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

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

.map-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.faq-section {
    padding: 6rem 0;
}

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

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

.faq-item {
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
}

.faq-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 3rem;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

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

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

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

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

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

.close-btn {
    display: inline-block;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        flex: none;
    }
    
    .story-content,
    .mission-content {
        flex-direction: column;
    }
    
    .story-image,
    .mission-image {
        margin-bottom: 3rem;
    }
    
    .inspiration-content {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .feature-grid,
    .post-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .testimonial {
        flex: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-post {
        flex-wrap: wrap;
    }
    
    .share-post span {
        width: 100%;
        margin-bottom: 1rem;
    }
}
