/* Base Styles and Variables */
:root {
    --primary-color: #2a6592; /* Muted blue primary color */
    --primary-light: #3a7da8; /* Lighter shade of primary */
    --primary-dark: #1a5070; /* Darker shade of primary */
    --secondary-color: #5e9ab8; /* Secondary blue tone */
    --accent-color: #f0a04b; /* Accent color for call-to-actions */
    --text-dark: #333333; /* Main text color */
    --text-medium: #666666; /* Secondary text color */
    --text-light: #999999; /* Tertiary text color */
    --bg-light: #f5f8fa; /* Light background color */
    --bg-white: #ffffff; /* White background */
    --border-color: #e5e8eb; /* Border color */
    --shadow-color: rgba(0, 0, 0, 0.08); /* Shadow color */
    --success-color: #4CAF50; /* Success color */
    --error-color: #F44336; /* Error color */
    --warning-color: #FFC107; /* Warning color */
    --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-secondary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    outline: none;
}

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

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

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

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

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

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

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

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

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

.logo img {
    height: 50px;
    width: auto;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.6rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 5px;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a.active:after, nav a:hover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

#font-decrease {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border-radius: 50%;
    transition: var(--transition);
}

#font-decrease:hover {
    background-color: rgba(42, 101, 146, 0.1);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

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

.feature-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(42, 101, 146, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon svg {
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Recent Posts Section */
.recent-posts {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

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

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

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.post-content h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.post-content h3 a:hover {
    color: var(--primary-color);
}

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

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

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

.testimonial {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

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

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

/* Blog Page Styles */
.page-header {
    background-color: var(--primary-color);
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.blog-content {
    padding: 0 0 80px;
    display: flex;
}

.blog-sidebar {
    width: 300px;
    margin-right: 40px;
}

.blog-posts {
    flex: 1;
}

.search-box {
    display: flex;
    margin-bottom: 30px;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--font-primary);
    outline: none;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--primary-dark);
}

.categories, .recent-posts-sidebar {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.categories h3, .recent-posts-sidebar h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.categories ul li, .recent-posts-sidebar ul li {
    margin-bottom: 12px;
}

.categories ul li a, .recent-posts-sidebar ul li a {
    color: var(--text-medium);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.categories ul li a:hover, .recent-posts-sidebar ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.blog-post {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.post-date {
    margin-right: 20px;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post .post-content {
    padding: 30px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: var(--font-primary);
    outline: none;
}

.newsletter-form button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: darken(var(--accent-color), 10%);
}

/* About Page Styles */
.about-story, .about-mission {
    padding: 80px 0;
}

.about-story .container, .about-mission .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-content, .mission-content {
    flex: 1;
    padding-right: 40px;
}

.mission-content {
    padding-right: 0;
    padding-left: 40px;
}

.story-image, .mission-image {
    flex: 1;
}

.story-image img, .mission-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow-color);
}

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

.value-item {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.value-icon {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item h3 {
    margin-bottom: 10px;
}

.value-item p {
    margin-bottom: 0;
}

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

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

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

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

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

.team-member h3 {
    margin: 20px 0 5px;
}

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

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-medium);
    margin: 0 10px;
    transition: var(--transition);
}

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

.achievements {
    padding: 80px 0;
    background-color: white;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

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

.achievement-recognition {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.achievement-recognition img {
    width: 40%;
    height: 300px;
    object-fit: cover;
}

.recognition-content {
    padding: 30px;
}

.recognition-content h3 {
    margin-bottom: 20px;
}

.recognition-content ul {
    list-style: disc;
    padding-left: 20px;
}

.recognition-content ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

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

.contact-content .container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    align-items: flex-start;
}

.info-icon {
    margin-right: 15px;
    background-color: rgba(42, 101, 146, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

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

.info-details p {
    margin-bottom: 5px;
    color: var(--text-medium);
}

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

.social-connect h3 {
    margin-bottom: 20px;
}

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

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

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

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    resize: vertical;
    outline: none;
    transition: var(--transition);
}

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

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

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

.contact-form button {
    justify-self: start;
    margin-top: 20px;
}

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

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.map-overlay:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.faq-toggle {
    transition: var(--transition);
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

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

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Post Styles */
.post-content {
    padding: 0 0 60px;
}

.post-header {
    margin-bottom: 30px;
}

.post-header h1 {
    margin-bottom: 20px;
}

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

.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

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

.featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

.post-body {
    margin-bottom: 30px;
}

.post-body h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.post-body p {
    margin-bottom: 20px;
    color: var(--text-dark);
    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;
    color: var(--text-dark);
}

.post-body ul {
    list-style: disc;
}

.post-body ol {
    list-style: decimal;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.tags p, .share p {
    margin-bottom: 10px;
    font-weight: 600;
}

.tags ul {
    display: flex;
    flex-wrap: wrap;
}

.tags ul li {
    margin-right: 10px;
    margin-bottom: 10px;
}

.tags ul li a {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(42, 101, 146, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
}

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

.related-posts {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.table-container {
    margin-bottom: 30px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: rgba(42, 101, 146, 0.05);
}

.matrix-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.matrix-quadrant {
    padding: 20px;
    border-radius: var(--border-radius);
}

.matrix-quadrant h4 {
    margin-bottom: 10px;
}

.matrix-quadrant p {
    font-style: italic;
    margin-bottom: 15px;
}

.matrix-quadrant ul {
    padding-left: 20px;
}

.important-urgent {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.important-not-urgent {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.not-important-urgent {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.not-important-not-urgent {
    background-color: rgba(158, 158, 158, 0.1);
    border: 1px solid rgba(158, 158, 158, 0.3);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cta-buttons .outline-btn {
    border-color: white;
    color: white;
}

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

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 80px 0 20px;
}

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

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

.footer-logo h3 {
    color: white;
    margin-bottom: 15px;
}

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

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-contact address p svg {
    margin-top: 3px;
    margin-right: 15px;
    color: var(--secondary-color);
}

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

.footer-bottom .social-icons {
    justify-content: center;
    margin-bottom: 20px;
}

.footer-bottom .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

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

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

/* Glossary */
.glossary {
    background-color: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.glossary h3 {
    margin-bottom: 30px;
}

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

.glossary dt {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.glossary dd {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 15px var(--shadow-color);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

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

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

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    background: none;
}

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

.thank-you-content svg {
    margin-bottom: 20px;
}

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

.thank-you-content p {
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .hero-content, .story-content, .mission-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .mission-content {
        order: 2;
        padding-left: 0;
        margin-bottom: 0;
        margin-top: 40px;
    }

    .mission-image {
        order: 1;
    }

    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-recognition {
        flex-direction: column;
    }

    .achievement-recognition img {
        width: 100%;
    }

    .contact-content .container {
        flex-direction: column;
    }

    .contact-info, .contact-form-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    nav ul {
        display: none;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .matrix-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .post-footer {
        flex-direction: column;
    }

    .tags {
        margin-bottom: 20px;
    }

    .blog-content {
        flex-direction: column;
    }

    .blog-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 40px;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .feature-grid, .post-grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

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

    .btn {
        width: 100%;
    }

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