/* Base Styles */
:root {
    --primary-color: #6a44f2;
    --primary-light: #9c7bff;
    --primary-dark: #4e31b5;
    --secondary-color: #ff7557;
    --secondary-light: #ff9f89;
    --secondary-dark: #e65a3d;
    --accent-color: #44d9e6;
    --text-color: #333333;
    --text-light: #777777;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --background-dark: #eeeeee;
    --border-color: #dddddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --font-main: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-mono: 'Courier New', Courier, monospace;
    --transition-normal: all 0.3s ease;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --container-max-width: 1200px;
    --header-height: 80px;
}

.dark-theme {
    --primary-color: #8e66ff;
    --primary-light: #b59dff;
    --primary-dark: #6b4dcc;
    --secondary-color: #ff8d6a;
    --secondary-light: #ffb19f;
    --secondary-dark: #e56f4d;
    --accent-color: #57e7f3;
    --text-color: #f0f0f0;
    --text-light: #c5c5c5;
    --background-color: #1a1a1a;
    --background-alt: #2c2c2c;
    --background-dark: #0d0d0d;
    --border-color: #444444;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Poppins:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--text-light);
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

.btn.tertiary:hover {
    background-color: var(--background-alt);
    border-color: var(--text-light);
}

/* Header Styles */
header {
    background-color: var(--background-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    transition: var(--transition-normal);
}

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

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

header h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

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

#main-nav li {
    margin-left: 2rem;
}

#main-nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

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

#main-nav a:hover:after,
#main-nav a.active:after {
    width: 100%;
}

#main-nav a.active {
    color: var(--primary-color);
}

.theme-switch {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.theme-switch svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-color);
    transition: var(--transition-normal);
}

.dark-theme .theme-switch svg {
    stroke: var(--text-light);
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    background-color: var(--background-alt);
    margin-bottom: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    margin-left: 2rem;
}

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

/* Quote of the Day */
.quote-of-the-day {
    background-color: var(--background-alt);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.quote-of-the-day h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.quote-of-the-day blockquote {
    border: none;
    font-size: 1.2rem;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Posts Section */
.featured-posts {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

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

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

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

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

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

.post-card h3 {
    font-size: 1.25rem;
    padding: 1rem 1rem 0.5rem;
}

.post-card p {
    padding: 0 1rem;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem 1rem 1rem;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
}

.read-more:hover {
    background-color: var(--background-alt);
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 3rem;
}

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

.newsletter-content h3 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-family: var(--font-main);
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    background-color: var(--secondary-color);
    padding: 0 1.5rem;
}

.newsletter-form button:hover {
    background-color: var(--secondary-dark);
}

/* Footer Styles */
footer {
    background-color: var(--background-alt);
    padding: 3rem 2rem 1rem;
    margin-top: 3rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

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

.footer-links h4,
.footer-legal h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
}

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

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

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

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

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

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

.social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--text-color);
    transition: var(--transition-normal);
}

.social-icons a:hover svg {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

/* Blog Page Styles */
.page-header {
    background-color: var(--background-alt);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-posts {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

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

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

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

.post-image {
    flex: 0 0 300px;
}

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

.post-content {
    flex: 1;
    padding: 2rem;
}

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

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

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

/* Single Post Styles */
.post-header {
    background-color: var(--background-alt);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.post-header h1 {
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 0.5rem;
}

.post-header .post-meta {
    justify-content: center;
    margin-bottom: 1rem;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.post-full-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.featured-image {
    margin-bottom: 2rem;
}

.featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.article-content {
    padding: 0 2rem 2rem;
}

.article-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0 2rem;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    font-size: 0.9rem;
}

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

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

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1.5rem;
}

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

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

.share-post {
    padding: 0 2rem 2rem;
}

.share-post h4 {
    margin-bottom: 1rem;
}

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

.share-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    color: white;
    font-weight: 500;
}

.share-btn svg {
    margin-right: 0.5rem;
}

.share-btn.facebook {
    background-color: #3b5998;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.pinterest {
    background-color: #bd081c;
}

.share-btn:hover {
    opacity: 0.9;
    color: white;
}

.related-posts {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-posts h3 {
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post {
    display: block;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

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

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

.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-block {
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

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

.author-card .author-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.author-card h4 {
    margin-bottom: 0.25rem;
}

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

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background-alt);
}

.popular-posts h4,
.categories h4 {
    margin-bottom: 1rem;
}

.popular-posts ul,
.categories ul {
    list-style: none;
    margin: 0;
}

.popular-posts li,
.categories li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.popular-posts li:last-child,
.categories li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.newsletter-mini h4 {
    margin-bottom: 1rem;
}

.newsletter-mini p {
    margin-bottom: 1rem;
}

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

.newsletter-mini input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    font-family: var(--font-main);
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.about-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-mission {
    background-color: var(--background-alt);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.mission-content h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.mission-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--primary-light);
}

.mission-icon svg {
    stroke: white;
}

.mission-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-section {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.team-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

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

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

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

.team-member h3 {
    margin: 1rem 0 0.25rem;
    font-size: 1.25rem;
}

.team-member p {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.team-member p:nth-of-type(2) {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background-alt);
}

.values-section {
    background-color: var(--background-alt);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.values-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.value-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.value-icon svg {
    stroke: white;
}

.value-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.join-team {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.join-content {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.join-content h3 {
    margin-bottom: 1.5rem;
}

.join-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.join-content .btn:hover {
    background-color: var(--background-alt);
}

/* Contact Page Styles */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    color: var(--primary-color);
}

.info-text h4 {
    margin-bottom: 0.5rem;
}

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

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

.social-contact h4 {
    margin-bottom: 1rem;
}

.contact-form-container {
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: var(--font-main);
    background-color: var(--background-color);
    color: var(--text-color);
}

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

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

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

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

.submit-btn {
    width: 100%;
}

.map-section {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.faq-section {
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: var(--background-color);
    cursor: pointer;
}

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.modal.open {
    display: flex;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

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

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

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

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .container, .post-content-wrapper {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        margin-left: 0;
    }
    
    .post-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-intro, .contact-section {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    #main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    #main-nav li {
        margin: 0.5rem 0;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image {
        flex: 0 0 200px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-items, .team-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius-md);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius-md);
        width: 100%;
    }
    
    .social-share {
        flex-direction: column;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
