/* Basic Reset and Typography */
:root {
  --primary-color: #2a5885;
  --secondary-color: #b88746;
  --accent-color: #e76f51;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

figure {
  margin: 2rem 0;
}

figcaption {
  text-align: center;
  font-style: italic;
  margin-top: 0.5rem;
  color: var(--gray-color);
  font-size: 0.9rem;
}

blockquote {
  font-style: italic;
  padding: 2rem;
  margin: 2rem 0;
  background-color: rgba(184, 135, 70, 0.1);
  border-left: 4px solid var(--secondary-color);
  position: relative;
}

blockquote:before {
  content: open-quote;
  font-size: 4rem;
  position: absolute;
  left: 10px;
  top: 10px;
  color: var(--secondary-color);
  opacity: 0.3;
}

blockquote p {
  margin-bottom: 0.5rem;
}

cite {
  font-style: normal;
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--gray-color);
}

/* Layout Components */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
  flex: 1;
}

section {
  padding: 4rem 0;
}

/* Header and Navigation */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

nav ul li {
  margin-left: 1.5rem;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}

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

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

nav ul li a.active {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.hero-content {
  flex: 1;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
}

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

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

.btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: white;
  text-decoration: none;
}

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

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

.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;
}

.center-btn {
  text-align: center;
  margin-top: 2rem;
}

/* Featured Quote Section */
.featured-quote {
  background-color: #f1f7fb;
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: center;
}

.featured-quote h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.featured-quote h2:after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 25%;
}

.featured-quote blockquote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
  background-color: transparent;
  border-left: none;
  position: relative;
  padding: 1rem 2rem;
}

.featured-quote blockquote:before {
  left: 0;
  top: -10px;
}

.featured-quote cite {
  color: var(--secondary-color);
  font-size: 1rem;
}

/* Photography Stats Section */
.photography-stats {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}

.photography-stats h2 {
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
}

.photography-stats h2:after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 25%;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  flex: 1;
  min-width: 250px;
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.stat-card p {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Blog Posts Grid */
.recent-posts,
.blog-posts,
.related-posts {
  padding: 4rem 2rem;
}

.recent-posts h2,
.blog-posts h2,
.related-posts h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.recent-posts h2:after,
.blog-posts h2:after,
.related-posts h2:after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 25%;
}

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

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

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

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

.post-card .post-content {
  padding: 1.5rem;
}

.post-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.post-card p {
  color: var(--gray-color);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 600;
  display: inline-block;
  position: relative;
}

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

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

/* Blog Post List */
.blog-post {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-post .post-image {
  width: 100%;
  height: 300px;
}

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

.blog-post .post-content {
  padding: 2rem;
}

.blog-post .post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.blog-post .post-meta span {
  display: flex;
  align-items: center;
}

.blog-post h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.blog-post p {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .blog-post {
    flex-direction: row;
  }

  .blog-post .post-image {
    width: 40%;
    height: auto;
  }

  .blog-post .post-content {
    width: 60%;
  }
}

/* Services Section */
.services {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.services h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services h2:after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 25%;
}

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

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(42, 88, 133, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: #1a3a5a;
  color: white;
  padding-top: 3rem;
}

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

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

.footer-logo .logo {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

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

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  position: relative;
}

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

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

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

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

.footer-links ul li a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

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

.footer-contact p svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.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);
  transition: var(--transition);
}

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

.social-icons svg {
  width: 20px;
  height: 20px;
  color: white;
}

.footer-bottom {
  background-color: #15304d;
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-info {
  margin-bottom: 1rem;
}

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

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Page Header */
.page-header {
  background-color: #1a3a5a;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.page-header h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Portfolio Gallery */
.portfolio-filters {
  margin: 2rem 0;
  text-align: center;
}

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

.filter-btn {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 58, 90, 0.8);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.gallery-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Call to Action Section */
.cta-section {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin: 4rem 0;
}

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

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-content .btn {
  background-color: white;
  color: var(--primary-color);
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

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

/* Contact Section */
.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2rem;
}

@media (min-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(42, 88, 133, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

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

.info-content p {
  color: var(--gray-color);
  margin-bottom: 0;
}

.social-connect {
  margin-top: 1rem;
}

.social-connect h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.contact-form h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary-color);
}

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

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

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

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

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

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

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Map Section */
.map-section {
  padding: 2rem;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 2rem;
  color: var(--primary-color);
}

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

/* FAQ Section */
.faq-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.faq-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.faq-section h2:after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 25%;
}

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

.accordion-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.accordion-header:hover {
  background-color: rgba(42, 88, 133, 0.05);
}

.accordion-header svg {
  width: 20px;
  height: 20px;
  transition: var(--transition);
}

.accordion-header.active svg {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

/* Team Section */
.team-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.team-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.team-section h2:after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 25%;
}

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

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

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

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

.team-card h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.3rem;
}

.team-card p {
  color: var(--gray-color);
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}

.team-card p:first-of-type {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card .social-icons {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.team-card .social-icons a {
  background-color: rgba(42, 88, 133, 0.1);
}

.team-card .social-icons svg {
  color: var(--primary-color);
}

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

.team-card .social-icons a:hover svg {
  color: white;
}

/* About Intro Section */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2rem;
}

@media (min-width: 992px) {
  .about-intro {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.about-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values Section */
.values-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.values-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.values-section h2:after {
  content: '';
  width: 50%;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -10px;
  left: 25%;
}

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

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

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

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(42, 88, 133, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.value-card p {
  color: var(--gray-color);
  margin-bottom: 0;
}

/* Equipment Section */
.equipment-section {
  padding: 4rem 2rem;
}

.equipment-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.equipment-section > p {
  max-width: 800px;
  margin-bottom: 2rem;
}

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

.equipment-category {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.equipment-category h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
}

.equipment-category h3:after {
  content: '';
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: -8px;
  left: 0;
}

.equipment-category ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.equipment-category ul li {
  margin-bottom: 0.5rem;
  color: var(--gray-color);
}

/* Single Blog Post */
.blog-post-single {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.post-header {
  margin-bottom: 2rem;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--gray-color);
  font-size: 0.9rem;
}

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

.post-featured-image img {
  width: 100%;
}

.post-content {
  line-height: 1.8;
}

.post-intro {
  font-size: 1.2rem;
  color: var(--gray-color);
  line-height: 1.8;
  border-left: 3px solid var(--secondary-color);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.post-content h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

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

.post-image-break img {
  width: 100%;
}

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

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

.post-tags span {
  font-weight: 600;
  color: var(--gray-color);
}

.post-tags a {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(42, 88, 133, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.post-author-bio {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

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

.author-info h3 {
  font-size: 1rem;
  color: var(--gray-color);
  margin-bottom: 0.25rem;
}

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

.author-info p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.post-comments {
  margin-top: 4rem;
}

.post-comments h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

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

.comment-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1.5rem;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.cookie-more-info {
  font-size: 0.85rem;
  color: var(--gray-color);
  margin-bottom: 0;
}

.cookie-more-info a {
  text-decoration: underline;
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

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

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--primary-color);
}

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

.success-icon {
  width: 60px;
  height: 60px;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.modal-body h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    flex-direction: column;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  header {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo-container {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 0.5rem 0;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .container {
    width: 95%;
  }
  
  .hero {
    padding: 3rem 1.5rem;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
}
