/* Global Variables */
:root {
    --primary-color: #0a846e;
    --primary-dark: #075a4b;
    --primary-light: #4bac9c;
    --secondary-color: #f5a623;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f7f7f7;
    --bg-dark: #2c2c2c;
    --border-color: #e0e0e0;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 6px 16px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 8px 24px rgba(0, 0, 0, 0.16);
    --border-radius: 8px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 10px = 1rem */
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

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

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

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
}

.accent {
    color: var(--primary-color);
}

/* Progress Bar */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 1000;
    background-color: transparent;
}

#progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.1s ease;
}

/* Header & Navigation */
header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-soft);
    padding: 1.5rem 4rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 5rem;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.6rem;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 3rem;
    height: 2.4rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    transition: all var(--transition-medium);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 4rem;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding-right: 4rem;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
}

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

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

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

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

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.post-image {
    height: 25rem;
    overflow: hidden;
}

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

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

.post-content {
    padding: 2rem;
}

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

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

.read-more {
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

.read-more:after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

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

.center-btn {
    text-align: center;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--bg-light);
    padding: 6rem 4rem;
}

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

.newsletter-content h2 {
    margin-bottom: 1.5rem;
}

.newsletter-content p {
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    max-width: 50rem;
    margin: 0 auto;
    gap: 1rem;
}

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

/* Personal Note Section */
.personal-note {
    padding: 8rem 4rem;
    background-color: var(--bg-color);
}

.note-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.note-container:before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 4rem;
    height: 4rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a846e' opacity='0.2'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.1;
}

.note-header {
    text-align: center;
    margin-bottom: 3rem;
}

.note-content {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    line-height: 1.8;
}

.signature {
    font-family: 'Pacifico', cursive;
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: right;
    margin-top: 3rem;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 6rem 4rem 3rem;
    margin-top: auto;
}

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

.footer-logo img {
    height: 5rem;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

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

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-legal a {
    color: white;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-contact i {
    margin-right: 1rem;
}

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

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

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

.social-icons svg {
    width: 2rem;
    height: 2rem;
}

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 1.4rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: white;
    padding: 2rem;
    z-index: 1000;
    box-shadow: var(--shadow-hard);
    transition: bottom var(--transition-medium);
}

.cookie-notice.show {
    bottom: 0;
}

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

.cookie-content p {
    margin-bottom: 2rem;
    max-width: 80rem;
}

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

.btn-cookie {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: all var(--transition-fast);
}

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

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

.btn-cookie.customize {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

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

.btn-cookie.decline {
    background-color: transparent;
    color: white;
}

.btn-cookie.decline:hover {
    text-decoration: underline;
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: underline;
    font-size: 1.4rem;
}

/* Blog Page Styles */
.blog-header {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8rem 4rem 4rem;
}

.blog-header h1 {
    margin-bottom: 1.5rem;
}

.blog-content {
    padding: 6rem 4rem;
    max-width: 100rem;
    margin: 0 auto;
}

.blog-post {
    margin-bottom: 8rem;
    padding-bottom: 8rem;
    border-bottom: 1px solid var(--border-color);
}

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

.post-details {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    font-size: 1.4rem;
    color: var(--text-light);
}

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

.post-category {
    background-color: var(--primary-light);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
}

.post-excerpt {
    margin-bottom: 3rem;
}

/* Single Post Page */
.post-page {
    padding: 6rem 4rem;
    max-width: 90rem;
    margin: 0 auto;
}

.single-post .post-header {
    text-align: center;
    margin-bottom: 4rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-light);
    font-size: 1.6rem;
    margin-top: 1.5rem;
}

.post-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.post-content {
    font-size: 1.8rem;
    line-height: 1.8;
}

.post-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.post-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content ul, .post-content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.post-content li {
    margin-bottom: 1rem;
}

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

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

.post-tags {
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    background-color: var(--bg-light);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    transition: all var(--transition-fast);
}

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

.post-share {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.post-share span {
    font-weight: 600;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.share-link.facebook {
    background-color: #3b5998;
    color: white;
}

.share-link.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-link.linkedin {
    background-color: #0077b5;
    color: white;
}

.share-link.email {
    background-color: #ea4335;
    color: white;
}

.share-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.post-navigation {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.back-to-blog {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.prev-post, .next-post {
    max-width: 25rem;
}

.prev-post span, .next-post span {
    display: block;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.prev-post p, .next-post p {
    font-weight: 600;
    margin-bottom: 0;
}

.related-posts {
    margin-top: 6rem;
}

.related-posts h3 {
    margin-bottom: 3rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.related-post {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-medium);
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-post img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.related-post h4 {
    padding: 1.5rem;
    font-size: 1.6rem;
    margin-bottom: 0;
}

/* About Page Styles */
.about-header {
    background-color: var(--bg-light);
    padding: 8rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-header-content {
    flex: 1;
    padding-right: 4rem;
}

.about-header-content h1 {
    margin-bottom: 1.5rem;
}

.about-header-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-story {
    padding: 8rem 4rem;
}

.about-story h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.about-story-content {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-story-text {
    flex: 3;
}

.about-story-image {
    flex: 2;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-values {
    background-color: var(--bg-light);
    padding: 8rem 4rem;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.value-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform var(--transition-medium);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 132, 110, 0.1);
    color: var(--primary-color);
}

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

.team-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    transition: transform var(--transition-medium);
}

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

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

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

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

.testimonials {
    background-color: var(--bg-light);
    padding: 8rem 4rem;
}

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

.testimonial-slider {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide:first-child {
    display: block;
}

.testimonial-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: var(--font-secondary);
    font-size: 8rem;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-content p {
    font-size: 2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 3rem;
}

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

.author-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h4 {
    margin-bottom: 0.5rem;
}

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

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.prev-testimonial, .next-testimonial {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-fast);
}

.prev-testimonial:hover, .next-testimonial:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.cta-content {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.cta-form {
    display: flex;
    max-width: 50rem;
    margin: 0 auto;
    gap: 1rem;
}

.cta-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: var(--border-radius);
}

.cta-form .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-form .btn-primary:hover {
    background-color: darken(var(--secondary-color), 10%);
    border-color: darken(var(--secondary-color), 10%);
}

/* Gallery Page Styles */
.gallery-header {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8rem 4rem 4rem;
}

.gallery-header h1 {
    margin-bottom: 1.5rem;
}

.gallery-filter {
    padding: 4rem 4rem 2rem;
    text-align: center;
}

.filter-container {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-weight: 500;
    background-color: var(--bg-light);
    transition: all var(--transition-fast);
}

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

.gallery-grid {
    padding: 2rem 4rem 8rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 30rem;
}

.gallery-image {
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    width: 100%;
}

.overlay-content h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    opacity: 0.8;
}

.view-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

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

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 5rem;
}

.close-lightbox {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
}

.lightbox-content {
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin: 0 auto;
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 2rem 0;
    font-size: 1.8rem;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.lightbox-prev {
    left: 3rem;
}

.lightbox-next {
    right: 3rem;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Contact Page Styles */
.contact-header {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8rem 4rem 4rem;
}

.contact-header h1 {
    margin-bottom: 1.5rem;
}

.contact-content {
    padding: 6rem 4rem;
    display: flex;
    gap: 6rem;
    max-width: 140rem;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.info-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-medium);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 132, 110, 0.1);
    color: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 1.5rem;
}

.info-card p {
    margin-bottom: 1rem;
}

.info-card a {
    display: inline-block;
}

.contact-form-container {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: var(--shadow-soft);
}

.contact-form-container h2 {
    margin-bottom: 3rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
}

.checkbox-group input {
    width: 2rem;
    height: 2rem;
    margin-top: 0.2rem;
}

.map-section {
    padding: 6rem 4rem;
    background-color: var(--bg-light);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 4rem;
}

.map-container {
    max-width: 120rem;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

.faq-section h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-container {
    max-width: 90rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

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

.faq-question h3 {
    margin-bottom: 0;
    flex: 1;
}

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

.faq-answer {
    padding: 0 0 2rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

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

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    max-width: 50rem;
    width: 90%;
    box-shadow: var(--shadow-hard);
    position: relative;
}

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

.modal-body {
    padding: 5rem;
    text-align: center;
}

.success-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 132, 110, 0.1);
    color: var(--primary-color);
}

.success-icon svg {
    stroke-width: 1.5;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }
    
    .hero, .about-header {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content, .about-header-content {
        padding-right: 0;
        margin-bottom: 4rem;
    }
    
    .about-story-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    header {
        padding: 1.5rem 2rem;
    }
    
    .hero, .blog-header, .gallery-header, .contact-header, .about-header {
        padding: 6rem 2rem 3rem;
    }
    
    .featured-posts, .newsletter, .personal-note, .blog-content, .about-story, .about-values, .team-section, .testimonials, .cta-section, .gallery-filter, .gallery-grid, .contact-content, .map-section, .faq-section {
        padding: 6rem 2rem;
    }
    
    .post-page {
        padding: 6rem 2rem;
    }
    
    footer {
        padding: 6rem 2rem 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 30rem;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 10rem 3rem;
        box-shadow: var(--shadow-hard);
        z-index: 99;
        transition: left var(--transition-medium);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .newsletter-form, .cta-form {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .post-navigation {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .prev-post, .next-post {
        max-width: none;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .modal-body {
        padding: 3rem;
    }
}
