/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background-color: #ff5252;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
}

.btn-secondary:hover {
    background-color: rgba(255, 107, 107, 0.1);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: #f1f1f1;
    color: #666;
}

.btn-tertiary:hover {
    background-color: #e5e5e5;
}

/* Header */
header {
    background-color: white;
    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;
    padding: 20px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    color: #ff6b6b;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 16px;
    position: relative;
}

nav ul li a:hover {
    color: #ff6b6b;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

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

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Page Header */
.page-header {
    background-color: #f5f5f5;
    padding: 50px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 36px;
    color: #333;
}

.page-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Legal Header */
.legal-header {
    background-color: #f2f2f2;
    padding: 40px 0;
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 32px;
    color: #333;
}

.legal-header p {
    color: #777;
    font-size: 16px;
}

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

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    color: #333;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 15px auto 0;
}

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

.post-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.post-content {
    padding: 20px;
}

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

.post-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #ff6b6b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #ff5252;
}

.read-more:hover i {
    transform: translateX(3px);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

/* Blog Page Styles */
.blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}

.blog-grid .post-card {
    margin-bottom: 0;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.post-date, .post-category, .post-author {
    margin-right: 15px;
}

.post-category {
    color: #ff6b6b;
    font-weight: 600;
}

/* Single Post Styles */
.post-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 50px;
}

.post-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.post-header-content {
    position: absolute;
    bottom: 50px;
    width: 100%;
    color: white;
}

.post-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.post-header .post-meta {
    color: #f1f1f1;
}

.post-content .container {
    max-width: 900px;
}

.post-body {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.post-intro {
    font-size: 18px;
    color: #666;
    border-left: 3px solid #ff6b6b;
    padding-left: 15px;
    margin-bottom: 30px;
}

.post-body h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.post-body h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

.post-body p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-body ul li, .post-body ol li {
    margin-bottom: 10px;
}

.post-image-full {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    display: block;
    text-align: center;
    font-style: italic;
    color: #777;
    padding: 10px;
    background-color: #f9f9f9;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.post-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.post-tags span {
    margin-right: 10px;
    font-weight: 600;
}

.post-tags a {
    background-color: #f1f1f1;
    color: #666;
    padding: 5px 12px;
    border-radius: 30px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: #ff6b6b;
    color: white;
}

.post-share {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.post-share span {
    margin-right: 15px;
    font-weight: 600;
}

.post-share a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.post-share a:hover {
    background-color: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

.post-author-box {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

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

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

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

.related-posts {
    margin-bottom: 40px;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.related-post {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.related-post h4 {
    padding: 15px 15px 5px;
    font-size: 16px;
}

.related-post a {
    display: block;
    padding: 0 15px 15px;
    color: #ff6b6b;
    font-weight: 600;
}

.related-post a:hover {
    color: #ff5252;
}

.comments-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comments-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.reply-comment {
    margin-left: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    border-bottom: none;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 600;
    margin-right: 15px;
}

.comment-date {
    color: #888;
    font-size: 14px;
}

.comment-reply {
    background-color: transparent;
    border: none;
    color: #ff6b6b;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 10px;
}

.comment-form h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff6b6b;
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
}

.form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-checkbox label {
    margin-bottom: 0;
}

/* Newsletter */
.newsletter {
    background-color: #ff6b6b;
    color: white;
    padding: 80px 0;
    margin-top: 80px;
}

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

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 16px;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 15px 25px;
    background-color: #333;
}

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

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 80px 0 20px;
}

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

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ff6b6b;
}

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

.footer-links ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-links ul li a.active {
    color: #ff6b6b;
}

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

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

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 100%;
    margin-bottom: 15px;
}

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

.cookie-content a {
    color: #ff6b6b;
    text-decoration: underline;
    margin-left: 20px;
}

.cookie-content a:hover {
    color: white;
}

/* About Page Styles */
.about-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.our-mission {
    margin-bottom: 60px;
}

.our-mission h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.our-mission h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 15px auto 0;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.mission-card i {
    font-size: 36px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.our-values {
    margin-bottom: 60px;
}

.our-values h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.our-values h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 15px auto 0;
}

.values-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.values-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.values-list {
    flex: 1;
}

.value-item {
    margin-bottom: 25px;
}

.value-item h3 {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.value-item h3 i {
    color: #ff6b6b;
    margin-right: 10px;
}

.our-team {
    margin-bottom: 60px;
}

.our-team h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
}

.our-team h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 15px auto 0;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

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

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    margin-top: 20px;
    font-size: 20px;
}

.member-role {
    color: #ff6b6b;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.team-member p {
    padding: 0 20px;
    color: #666;
}

.member-social {
    margin-top: 15px;
}

.member-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

.collaborations {
    margin-bottom: 60px;
}

.collaborations h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
}

.collaborations h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 15px auto 0;
}

.collaborations p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.partner {
    width: 180px;
    height: 100px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.testimonials {
    margin-bottom: 60px;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.testimonials h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 15px auto 0;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 350px;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-content:after {
    content: '\201D';
    font-size: 60px;
    color: rgba(255, 107, 107, 0.1);
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.testimonial-content p {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

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

.author-info {
    color: #888;
    font-size: 14px;
}

.cta-section {
    text-align: center;
    margin-bottom: 60px;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.social-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    transition: all 0.3s ease;
}

.social-button:hover {
    background-color: #ff6b6b;
    color: white;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form-section h2, 
.contact-info-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff6b6b;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
}

.contact-details a {
    color: #ff6b6b;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-contact {
    margin-top: 30px;
}

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

.social-buttons {
    display: flex;
    gap: 15px;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
}

.faq-section h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff6b6b;
    margin: 15px auto 0;
}

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

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
}

.faq-item.active .faq-toggle {
    background-color: #ff6b6b;
    color: white;
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

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

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalfade 0.3s;
}

@keyframes modalfade {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #888;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
}

.close-modal:hover {
    color: #ff6b6b;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-body i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.modal-body h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-body p {
    color: #666;
    margin-bottom: 30px;
}

.close-btn {
    padding: 10px 30px;
}

/* Legal Pages Styles */
.legal-content .container {
    max-width: 900px;
}

.legal-intro {
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.policy-section h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #444;
}

.policy-section p, 
.policy-section ul, 
.policy-section ol {
    color: #666;
    margin-bottom: 15px;
}

.policy-section ul, 
.policy-section ol {
    padding-left: 20px;
}

.policy-section ul li, 
.policy-section ol li {
    margin-bottom: 5px;
}

.refund-steps {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.refund-steps h3 {
    margin-top: 0;
}

.legal-footer {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.legal-footer p {
    color: #666;
    margin-bottom: 0;
}

/* Tooltips */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    background-color: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    white-space: nowrap;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

[data-tooltip]:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    transform-origin: top;
    transform: rotate(180deg);
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-intro, 
    .values-content {
        flex-direction: column;
    }
    
    .about-image, 
    .about-text, 
    .values-image, 
    .values-list {
        flex: none;
        width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    header .container {
        padding: 15px 20px;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background-color: white;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
    }
    
    .mobile-menu-icon {
        display: block;
        z-index: 1000;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .cookie-content a {
        margin-left: 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 15% auto;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .post-header-content h1 {
        font-size: 28px;
    }
    
    .post-body {
        padding: 20px;
    }
    
    .post-body h2 {
        font-size: 24px;
    }
    
    .post-body h3 {
        font-size: 20px;
    }
    
    .post-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin: 0 auto 20px;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin: 0 auto 15px;
    }
    
    .comment-info {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-author {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .reply-comment {
        margin-left: 20px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
}

/* Animation for light effect on buttons */
.btn:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.5s;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn:hover:after {
    opacity: 1;
    animation: shineEffect 1s forwards;
}

@keyframes shineEffect {
    0% {transform: scale(0) rotate(30deg); opacity: 0;}
    50% {opacity: 1;}
    100% {transform: scale(2) rotate(30deg); opacity: 0;}
}
