/* Base Styles */
:root {
  --primary-color: #2b5876;
  --primary-light: #4e4376;
  --secondary-color: #f9a826;
  --text-color: #333333;
  --light-text: #777777;
  --lighter-text: #999999;
  --background-color: #ffffff;
  --light-background: #f8f9fa;
  --dark-background: #232323;
  --border-color: #e1e1e1;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-secondary: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--background-color);
  overflow-x: hidden;
  position: relative;
}

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

a:hover {
  color: var(--secondary-color);
}

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(43, 88, 118, 0.3);
}

.btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(249, 168, 38, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 10px rgba(43, 88, 118, 0.3);
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
  width: 0%;
  z-index: 9999;
  transition: width 0.3s ease;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

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

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

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

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

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

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Header */
.page-header {
  height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/header-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  margin-top: 80px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Future Quote Section */
.future-quote {
  background-color: var(--light-background);
  padding: 60px 0;
  text-align: center;
}

.future-quote h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.future-quote blockquote {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-color);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
  position: relative;
  padding: 0 30px;
}

.future-quote blockquote::before,
.future-quote blockquote::after {
  content: '"';
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  line-height: 0.6;
}

.future-quote blockquote::before {
  top: 0;
  left: 0;
}

.future-quote blockquote::after {
  bottom: -20px;
  right: 0;
  transform: rotate(180deg);
}

.future-quote cite {
  display: block;
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
  color: var(--light-text);
  margin-top: 15px;
}

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

.featured-posts h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.featured-posts h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

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

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

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

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

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

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

.post-content {
  padding: 20px;
}

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

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

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

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

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

.view-all {
  text-align: center;
}

/* Instagram Feed */
.instagram-feed {
  padding: 80px 0;
  background-color: var(--light-background);
  text-align: center;
}

.instagram-feed h2 {
  margin-bottom: 50px;
  position: relative;
}

.instagram-feed h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 1/1;
}

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

.instagram-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.instagram-item:hover::before {
  opacity: 1;
}

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

.instagram-btn {
  display: inline-flex;
  align-items: center;
  background-color: #E1306C;
}

.instagram-btn svg {
  margin-right: 10px;
}

.instagram-btn:hover {
  background-color: #C13584;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(to right, var(--primary-color), var(--primary-light));
  color: white;
}

.newsletter h2 {
  margin-bottom: 20px;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
}

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

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

.newsletter button {
  border-radius: 0 30px 30px 0;
  background-color: var(--secondary-color);
  padding: 0 30px;
}

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

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  color: #b9b9b9;
}

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

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

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

.footer-contact h3,
.footer-links h3 {
  margin-bottom: 25px;
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #b9b9b9;
}

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

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

.footer-links ul li a {
  color: #b9b9b9;
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b9b9b9;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 20px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cookie-consent.show {
  opacity: 1;
  visibility: visible;
}

.cookie-text {
  margin-bottom: 20px;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-cookie {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.accept:hover {
  background-color: #1e4564;
}

.settings {
  background-color: #f0f0f0;
  color: var(--text-color);
}

.settings:hover {
  background-color: #e0e0e0;
}

.reject {
  background-color: #f0f0f0;
  color: var(--text-color);
}

.reject:hover {
  background-color: #e0e0e0;
}

.cookie-more {
  margin-left: auto;
  color: var(--primary-color);
  font-weight: 600;
}

/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

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

.blog-image {
  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.1);
}

.blog-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.category {
  background-color: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.blog-text {
  padding: 20px;
}

.blog-text h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.blog-text p {
  color: var(--light-text);
  margin-bottom: 20px;
}

/* Blog Post Page */
.blog-post {
  padding: 80px 0;
  margin-top: 80px;
}

.post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-author {
  color: var(--light-text);
}

.post-excerpt {
  font-size: 1.2rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.post-content ul,
.post-content ol {
  margin-bottom: 30px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.post-content .caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-text);
  margin-top: -20px;
  margin-bottom: 30px;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

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

.post-tags a {
  background-color: #f0f0f0;
  color: var(--text-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.post-author-bio {
  display: flex;
  gap: 30px;
  background-color: var(--light-background);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 50px;
}

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

.author-info h3 {
  font-size: 1rem;
  color: var(--light-text);
  margin-bottom: 5px;
}

.author-info h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

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

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

.author-social a {
  color: var(--light-text);
}

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

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

.post-nav-previous,
.post-nav-next {
  flex: 1;
}

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

.post-navigation span {
  display: block;
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 5px;
}

.post-navigation a {
  font-weight: 600;
  font-size: 1.1rem;
}

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

.related-posts h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.related-posts h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

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

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

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

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

.related-post h3 {
  padding: 15px 20px 0;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.related-post a {
  display: inline-block;
  margin: 0 20px 20px;
  font-weight: 600;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.about-content h2 {
  margin-bottom: 30px;
  position: relative;
}

.about-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.about-content p {
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.team-section h2 {
  margin-bottom: 15px;
}

.section-subtitle {
  color: var(--light-text);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

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

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

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

.member-image {
  overflow: hidden;
}

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

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

.member-info {
  padding: 20px;
  text-align: center;
}

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

.position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.bio {
  color: var(--light-text);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  color: var(--light-text);
}

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

.values {
  padding: 80px 0;
}

.values h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.values h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

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

.value-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  color: var(--light-text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Gallery Page */
.gallery-filter {
  padding: 20px 0 40px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-btn {
  background-color: #f0f0f0;
  color: var(--text-color);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.gallery-content {
  padding-bottom: 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.gallery-overlay p {
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.gallery-cta {
  padding: 80px 0;
  text-align: center;
  background-color: var(--light-background);
}

.gallery-cta h2 {
  margin-bottom: 15px;
}

.gallery-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--light-text);
}

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

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2,
.contact-form h2 {
  margin-bottom: 30px;
  position: relative;
}

.contact-info h2::after,
.contact-form h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.contact-info p {
  color: var(--light-text);
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  margin-right: 20px;
  color: var(--primary-color);
}

.info-text h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

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

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

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(43, 88, 118, 0.1);
}

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

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

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--light-text);
}

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

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.map-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

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

.map-container img {
  width: 100%;
  height: auto;
}

/* Thank You Modal */
.thank-you-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.thank-you-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.thank-you-modal.show .modal-content {
  transform: scale(1);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-text);
}

.modal-icon {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1100px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    margin-bottom: 50px;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin: 0 auto 20px;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .blog-card {
    grid-template-columns: 1fr;
  }
  
  .blog-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .future-quote blockquote {
    font-size: 1.2rem;
  }
  
  .hamburger {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav ul {
    flex-direction: column;
    gap: 20px;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: 30px;
    margin-bottom: 15px;
  }
  
  .newsletter button {
    border-radius: 30px;
  }
  
  .cookie-consent {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-more {
    margin-left: 0;
    margin-top: 15px;
    text-align: center;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .post-nav-next {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
  }
  
  .future-quote blockquote {
    padding: 0 20px;
  }
  
  .future-quote blockquote::before,
  .future-quote blockquote::after {
    font-size: 3rem;
  }
}
