/* Base Styles & Variables
-------------------------------------------- */
:root {
    --primary-color: #30bfbf; /* Turquoise */
    --primary-light: #a6e4e4;
    --primary-dark: #1a8a8a;
    --secondary-color: #f7f9f9; /* Off-white */
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #111111;
    --border-color: #e0e0e0;
    --border-radius: 6px;
    --transition: all 0.3s ease;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --font-main: 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
}

/* Reset & Global Styles
-------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-tertiary {
    background-color: var(--text-light);
    color: white;
}

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

/* Header & Navigation
-------------------------------------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

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

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

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

/* Hero Section
-------------------------------------------- */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-text {
    max-width: 700px;
    padding: 0 1.5rem;
}

.hero-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: white;
}

/* Featured Posts Section
-------------------------------------------- */
.featured-posts {
    padding: 4rem 0;
}

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

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.post-image {
    height: 220px;
    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: 1.5rem;
}

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

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

.read-more {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.arrow {
    margin-left: 0.25rem;
    transition: var(--transition);
}

.read-more:hover .arrow {
    margin-left: 0.5rem;
}

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

/* Water Motif Section
-------------------------------------------- */
.water-motif {
    position: relative;
    background-color: var(--primary-light);
    padding: 4rem 0;
    overflow: hidden;
}

.water-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(48, 191, 191, 0.2) 25%, transparent 25%, transparent 50%, rgba(48, 191, 191, 0.2) 50%, rgba(48, 191, 191, 0.2) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    animation: wave 10s linear infinite;
    opacity: 0.3;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.water-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.water-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.water-content p {
    color: var(--text-dark);
}

/* Glossary Section
-------------------------------------------- */
.glossary {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.glossary h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.glossary-terms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.glossary-term {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.glossary-term h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Fun Fact Section
-------------------------------------------- */
.fun-fact {
    padding: 3rem 0;
    background-color: var(--primary-color);
    color: white;
}

.fun-fact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.fun-fact-container h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Footer
-------------------------------------------- */
footer {
    background-color: var(--text-dark);
    color: white;
    padding-top: 3rem;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
}

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

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

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

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

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

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: white;
}

address {
    font-style: normal;
    color: #ccc;
    line-height: 1.8;
}

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

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

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

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner
-------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.cookie-more {
    color: var(--primary-light);
    font-size: 0.875rem;
}

/* Page Banner
-------------------------------------------- */
.page-banner {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.page-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.page-banner-text {
    max-width: 700px;
    padding: 0 1.5rem;
}

.page-banner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.page-banner-text p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Blog Page Styles
-------------------------------------------- */
.blog-content {
    padding: 4rem 0;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
}

.blog-post-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.post-category {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog Sidebar
-------------------------------------------- */
.blog-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.sidebar-widget {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

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

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

.popular-posts ul {
    list-style: none;
    padding: 0;
}

.popular-posts li {
    margin-bottom: 1.25rem;
}

.popular-posts li:last-child {
    margin-bottom: 0;
}

.popular-posts a {
    display: flex;
    gap: 1rem;
}

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

.popular-posts h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.newsletter {
    text-align: center;
}

.newsletter p {
    margin-bottom: 1.25rem;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

/* Products Page Styles
-------------------------------------------- */
.product-categories {
    padding: 4rem 0;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-filter {
    padding: 0.5rem 1.25rem;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.category-filter.active, .category-filter:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

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

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

.product-image {
    height: 250px;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
}

.product-features {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

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

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

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

.feature-icon {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.testimonials {
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-light);
    opacity: 0.3;
    z-index: 0;
}

.testimonial-quote {
    position: relative;
    font-style: italic;
    margin-bottom: 1.5rem;
    z-index: 1;
}

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

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

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* About Page Styles
-------------------------------------------- */
.about-intro {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

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

.mission-values {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.value-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.team-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-card h3 {
    margin: 1.25rem 0 0.5rem;
}

.team-card p {
    color: var(--text-light);
    margin: 0 1.5rem 1.5rem;
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.achievements {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(120px + 1.5rem);
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: calc(120px + 3rem);
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: calc(120px + 1.5rem);
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-date {
    position: absolute;
    left: 1.5rem;
    top: 0;
    width: 120px;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles
-------------------------------------------- */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    margin-bottom: 2rem;
}

.info-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-content h3 {
    margin-bottom: 0.5rem;
}

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

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

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

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

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-light);
}

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

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

.required {
    color: #e74c3c;
}

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

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

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 2rem;
}

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

.faq-section {
    padding: 4rem 0;
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: white;
    cursor: pointer;
}

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

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

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

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

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

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

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

.modal-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Blog Post Page Styles
-------------------------------------------- */
.post-page {
    background-color: var(--secondary-color);
}

.post-header {
    background-color: white;
    padding: 3rem 0;
    text-align: center;
}

.post-header .post-category {
    margin: 0 auto 1.25rem;
    display: inline-block;
}

.post-title {
    font-size: 2.75rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 500;
    color: var(--text-dark);
}

.post-featured-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-content-wrapper {
    max-width: var(--container-width);
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.post-content {
    background-color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.post-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    border-left: 3px solid var(--primary-color);
    padding-left: 1.25rem;
    margin-bottom: 2rem;
}

.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

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

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

.post-image-container {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-inline-image {
    width: 100%;
}

.image-caption {
    background-color: #f9f9f9;
    padding: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

.post-quote {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-color);
}

.post-quote p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.post-quote cite {
    display: block;
    text-align: right;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-list {
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.75rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
}

.tag {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.post-sidebar {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.author-bio {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.author-bio .author-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.25rem;
}

.author-bio h3 {
    margin-bottom: 0.75rem;
}

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

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

.related-posts {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.related-posts h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.related-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

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

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.related-post h4 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.related-post .post-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.share-post {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.share-post h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.twitter {
    background-color: #1DA1F2;
    color: white;
}

.facebook {
    background-color: #4267B2;
    color: white;
}

.linkedin {
    background-color: #0077B5;
    color: white;
}

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

.post-navigation {
    max-width: var(--container-width);
    margin: 0 auto 3rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.prev-post a, .next-post a {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.next-post a {
    text-align: right;
}

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

.nav-label {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.post-navigation .post-title {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0;
}

.newsletter-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.newsletter-container h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-container p {
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius);
}

.newsletter-form .btn {
    background-color: var(--primary-dark);
}

.form-note {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Responsive Styles
-------------------------------------------- */
@media (max-width: 991px) {
    .hero-text h2 {
        font-size: 2.25rem;
    }

    .post-content-wrapper, .contact-grid, .about-content, .mission-values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .post-sidebar {
        position: static;
    }

    .timeline::before {
        left: 1.5rem;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-date {
        position: static;
        margin-bottom: 0.5rem;
        width: auto;
    }

    .timeline-dot {
        left: 1.5rem;
    }

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

@media (max-width: 767px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 0.5rem;
    }

    .hero {
        height: 70vh;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

    .post-title {
        font-size: 2rem;
    }

    .blog-post-card {
        grid-template-columns: 1fr;
    }

    .post-image {
        height: 200px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

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

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

    .next-post a {
        text-align: left;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .post-content {
        padding: 1.5rem;
    }

    .category-filters {
        flex-wrap: wrap;
    }

    .features-grid, .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Effects
-------------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero, .featured-posts, .water-motif, .glossary, .fun-fact {
    animation: fadeIn 1s ease;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.post-card, .blog-post-card, .product-card, .feature-card, .testimonial-card, .team-card {
    animation: slideInUp 0.5s ease forwards;
}

/* Delay animations for grid items */
.post-card:nth-child(1), .blog-post-card:nth-child(1), .product-card:nth-child(1), .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.post-card:nth-child(2), .blog-post-card:nth-child(2), .product-card:nth-child(2), .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.post-card:nth-child(3), .blog-post-card:nth-child(3), .product-card:nth-child(3), .feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.post-card:nth-child(4), .blog-post-card:nth-child(4), .product-card:nth-child(4), .feature-card:nth-child(4) {
    animation-delay: 0.4s;
}
