/* Base Styles */
:root {
    --primary-color: #6a43ff;
    --primary-dark: #5533cc;
    --secondary-color: #ff6b6b;
    --accent-color: #43e8ff;
    --text-color: #333;
    --text-light: #777;
    --bg-color: #f9f9fb;
    --bg-dark: #2a2a38;
    --bg-accent: #1f1f2c;
    --white: #fff;
    --border-color: #eaeaea;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #9543ff 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 12px;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

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

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

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.site-title h1 {
    font-size: 1.5rem;
    margin-bottom: 0.1rem;
}

.site-title p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 1.5rem;
}

.main-nav li a {
    font-weight: 500;
    padding: 0.5rem;
    color: var(--text-color);
}

.main-nav li.active a {
    color: var(--primary-color);
    position: relative;
}

.main-nav li.active a:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    bottom: -5px;
    left: 0;
}

.main-nav li a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bg-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger:before,
.hamburger:after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--bg-dark);
    position: absolute;
    transition: var(--transition);
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger:before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger:after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

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

.feature-card {
    padding: 2rem;
    background: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.feature-icon svg {
    width: 30px;
    height: 30px;
}

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

/* Comparison Table */
.comparison {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

.table-responsive {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(106, 67, 255, 0.05);
}

.comparison-table td {
    border-bottom: 1px solid var(--border-color);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background-color: var(--white);
}

.chart-container {
    max-width: 700px;
    margin: 0 auto;
    height: 400px;
}

.chart-caption {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Latest Posts Section */
.latest-posts {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

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

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

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

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

.post-content {
    padding: 1.5rem;
}

.post-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.post-excerpt {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
}

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

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

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

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

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-title:after {
    background: var(--white);
}

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

.testimonial {
    padding: 1.5rem;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 40px;
    border-width: 12px 12px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.1) transparent;
    display: block;
    width: 0;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

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

.testimonial-author strong {
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Blog Page Styles */
.blog-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.blog-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.blog-categories {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.category-tab:hover {
    color: var(--primary-color);
}

.category-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-content {
    padding: 5rem 0;
}

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

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.blog-date,
.blog-category {
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-category {
    padding: 0.25rem 0.5rem;
    background: rgba(106, 67, 255, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius);
}

.blog-card-content h2 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

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

.blog-card-content .read-more {
    margin-top: auto;
}

.blog-subscription {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0;
}

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

.subscription-form h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.subscription-form p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.form-group input[type="email"] {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
    outline: none;
}

.form-group button {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0.65rem 1.25rem;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    margin-bottom: 1rem;
}

.form-consent input {
    margin-top: 5px;
}

.form-consent label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-consent a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Services Page Styles */
.services-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.services-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.services-grid {
    padding: 5rem 0;
}

.service-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--box-shadow);
}

.service-content {
    flex: 1.2;
    position: relative;
}

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

.service-icon svg {
    width: 30px;
    height: 30px;
}

.service-content h2 {
    margin-bottom: 1rem;
}

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

.service-details {
    background: rgba(106, 67, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 500;
}

.detail-value {
    color: var(--primary-color);
    font-weight: 600;
}

.service-comparison {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.service-cta {
    background: var(--gradient-primary);
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

.service-faq {
    padding: 5rem 0;
    background-color: var(--white);
}

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

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

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    flex: 1;
}

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

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

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

/* About Page Styles */
.about-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.about-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.about-story {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-story .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.story-content {
    flex: 1.2;
}

.story-image {
    flex: 0.8;
}

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

.about-mission {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

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

.mission-block {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
}

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

.values-list {
    list-style-type: none;
}

.values-list li {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.values-list li:before {
    content: '•';
    color: var(--primary-color);
}

.team-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.team-member {
    background-color: var(--bg-color);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 5px solid var(--white);
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

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

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

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

.achievements {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

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

.achievement-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.achievement-icon svg {
    width: 25px;
    height: 25px;
}

.achievement-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

.locations {
    padding: 5rem 0;
    background-color: var(--white);
}

.locations-map {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.map-container {
    flex: 1.2;
    min-width: 300px;
}

.location-map {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
}

.location-list {
    flex: 0.8;
    min-width: 300px;
}

.location-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.location-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-item p {
    margin-bottom: 0.5rem;
}

.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.contact-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 1.5;
    min-width: 350px;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(106, 67, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-icon svg {
    width: 20px;
    height: 20px;
}

.detail-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

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

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(106, 67, 255, 0.2);
}

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

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

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

.form-submit button {
    padding: 0.75rem 2rem;
}

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

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

.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 5rem 0 1rem;
}

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

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

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h4:after,
.footer-contact h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

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

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact address {
    font-style: normal;
    opacity: 0.7;
}

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

.footer-contact address a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact address a:hover {
    color: var(--white);
}

.footer-social .social-icons {
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 1rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

.btn-customize {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-customize:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-more a {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

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

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

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

.modal-icon svg {
    width: 35px;
    height: 35px;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

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

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .about-story .container {
        flex-direction: column;
    }

    .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        z-index: 100;
    }

    .main-nav.active {
        max-height: 300px;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav li a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .post-card {
        padding: 1.5rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

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

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .site-title h1 {
        font-size: 1.3rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .feature-card,
    .post-card,
    .team-member,
    .mission-block,
    .achievement-item {
        padding: 1.2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }
}
