/* Base Styles */
:root {
    --primary-color: #5C62EC;
    --primary-dark: #4A4FD3;
    --primary-light: #7C82F0;
    --secondary-color: #FF6B6B;
    --text-color: #333333;
    --text-light: #666666;
    --text-xlight: #999999;
    --bg-color: #FFFFFF;
    --bg-light: #F9F9FF;
    --bg-dark: #EAEAFF;
    --success: #2ECC71;
    --warning: #F39C12;
    --error: #E74C3C;
    --border-color: #E0E0FF;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(92, 98, 236, 0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    font-size: 16px;
}

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

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

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(92, 98, 236, 0.2);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Header & Navigation */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
    border-radius: 3px;
}

.menu a:hover:after, .menu a.active:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(124, 130, 240, 0.1) 0%, rgba(92, 98, 236, 0.1) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

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

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(92, 98, 236, 0.15);
}

.post-thumbnail {
    height: 200px;
    overflow: hidden;
}

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

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.post-meta {
    color: var(--text-xlight);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-right: 20px;
}

.read-more:after {
    content: '→';
    position: absolute;
    right: 0;
    transition: var(--transition);
}

.read-more:hover:after {
    transform: translateX(5px);
}

/* Inspiration Block */
.inspiration-block {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.inspiration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.inspiration-text h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.subscription-form {
    display: flex;
    margin-top: 25px;
}

.subscription-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

.subscription-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Poll Section */
.poll-section {
    padding: 80px 0;
}

.poll-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.poll-container h3 {
    margin-bottom: 25px;
    text-align: center;
}

.poll-option {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.poll-option input[type="radio"] {
    margin-right: 10px;
}

.poll-option label {
    font-size: 1.1rem;
    cursor: pointer;
}

.poll-form button {
    margin-top: 20px;
    width: 100%;
}

.poll-results {
    margin-top: 30px;
}

.result-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.result-label {
    width: 250px;
    flex-shrink: 0;
}

.result-progress {
    flex: 1;
    height: 12px;
    background: var(--bg-dark);
    border-radius: 6px;
    overflow: hidden;
    margin: 0 15px;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 6px;
}

.result-percentage {
    width: 50px;
    text-align: right;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: #2A2D45;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    display: none; /* Will be shown via JS */
}

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

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

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

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

.customize {
    background: #F0F0FF;
    color: var(--text-color);
}

.customize:hover {
    background: #E0E0FF;
}

.reject {
    background: #F0F0F0;
    color: var(--text-color);
}

.reject:hover {
    background: #E0E0E0;
}

.cookie-more {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-hero {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(124, 130, 240, 0.1) 0%, rgba(92, 98, 236, 0.1) 100%);
}

.blog-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.blog-content {
    padding: 60px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-item .post-thumbnail {
    height: 100%;
}

.post-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.post-info .post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.post-date, .post-category {
    display: flex;
    align-items: center;
}

.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.widget {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.widget h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.categories ul li {
    margin-bottom: 12px;
}

.categories a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
}

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

.popular-posts ul li {
    margin-bottom: 15px;
}

.popular-posts a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-color);
}

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

.popular-posts span {
    font-size: 0.95rem;
    font-weight: 500;
}

.popular-posts a:hover span {
    color: var(--primary-color);
}

/* Single Post Page */
.post-content {
    padding: 60px 0;
}

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

.post-header .post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.post-header .post-excerpt {
    font-size: 1.2rem;
    color: var(--text-light);
}

.post-featured-image {
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.post-content-wrapper {
    position: relative;
}

.table-of-contents {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
}

.table-of-contents h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.table-of-contents ul {
    margin-left: 15px;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: var(--text-color);
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

.post-content-wrapper h2 {
    font-size: 1.9rem;
    margin: 40px 0 20px;
}

.post-content-wrapper h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.post-content-wrapper ul, 
.post-content-wrapper ol {
    margin: 0 0 20px 20px;
}

.post-content-wrapper li {
    margin-bottom: 10px;
}

.post-content-wrapper a {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-image {
    margin: 30px 0;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.post-callout {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.post-callout h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.post-callout p:last-child {
    margin-bottom: 0;
}

.post-cta {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 15px;
}

.post-cta p {
    margin-bottom: 20px;
}

.post-sidebar .author-info {
    text-align: center;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 10px;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.post-comments {
    margin-top: 60px;
    max-width: 800px;
}

.post-comments h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.comment {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.comment-content {
    flex: 1;
}

.comment-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
}

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

.reply-btn {
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

.comment.reply {
    margin-left: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.comment-form {
    margin-top: 40px;
}

.comment-form h3 {
    text-align: left;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

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

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

.more-posts {
    padding: 80px 0;
    background: var(--bg-light);
}

/* About Us Page */
.page-header {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(124, 130, 240, 0.1) 0%, rgba(92, 98, 236, 0.1) 100%);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.about-intro {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.about-text h2 {
    margin-bottom: 25px;
}

.mission-values {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.mission-item {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.team-section {
    padding: 80px 0;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

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

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

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

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

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.team-member .social-links {
    padding-bottom: 20px;
}

.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 10px;
}

.testimonial-content {
    position: relative;
    padding: 0 20px;
    margin-bottom: 20px;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-light);
    position: absolute;
    line-height: 1;
}

.testimonial-content:before {
    top: -10px;
    left: 0;
}

.testimonial-content:after {
    bottom: -30px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-info h4 {
    margin-bottom: 5px;
}

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

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2,
.contact-form-container h2 {
    margin-bottom: 25px;
}

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

.info-item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 5px;
}

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

.social-contact h3 {
    margin-bottom: 15px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width {
    grid-column: span 2;
}

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

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form button {
    grid-column: span 2;
}

.map-section {
    padding: 40px 0 80px;
}

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

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

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

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

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

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

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

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

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

.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thank-you-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.thank-you-modal.active .modal-content {
    transform: scale(1);
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-content h2 {
    margin-bottom: 15px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .inspiration-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .inspiration-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .post-header h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .about-content,
    .blog-layout,
    .post-body,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .post-item {
        grid-template-columns: 1fr;
    }
    
    .post-item .post-thumbnail {
        height: 200px;
    }
    
    .subscription-form {
        flex-direction: column;
    }
    
    .subscription-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .subscription-form button {
        border-radius: var(--border-radius);
    }
    
    .post-comments h3 {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .featured-posts,
    .inspiration-block,
    .poll-section,
    .blog-content,
    .about-intro,
    .mission-values,
    .team-section,
    .testimonials,
    .contact-section,
    .map-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .full-width,
    .contact-form button {
        grid-column: span 1;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
