/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --bg-color: #fff;
  --border-color: #e0e0e0;
  --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;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

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

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* Add icons to headings */
h1 i, h2 i, h3 i, h4 i, h5 i, h6 i {
  margin-right: 10px;
  color: var(--secondary-color);
}

/* Custom list styles */
.custom-list {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.custom-list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

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

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

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

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

.btn-tertiary {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 20px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

nav ul li a {
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  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;
  justify-content: space-between;
  padding: 80px 20px;
  background-color: var(--light-color);
}

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

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

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

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

/* Featured Posts */
.featured-posts {
  background-color: var(--bg-color);
}

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

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

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

.post-content {
  padding: 20px;
}

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

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

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

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

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

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

/* Services */
.services {
  background-color: var(--light-color);
}

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

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

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

.service-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  display: block;
}

/* Testimonials */
.testimonials {
  background-color: var(--bg-color);
}

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

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial p::before {
  content: '"';
  font-size: 2rem;
  color: var(--secondary-color);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 10px;
}

.client {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.client h4 {
  margin-bottom: 5px;
}

.client p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #777;
}

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

.blog-posts {
  padding: 60px 0;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: #777;
  font-size: 0.9rem;
}

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

.post-meta i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.post-date, .post-author, .post-category {
  position: relative;
}

.post-date::after, .post-author::after {
  content: '•';
  position: absolute;
  right: -12px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.pagination span.current-page {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.pagination a:hover {
  background-color: var(--light-color);
}

.pagination a.disabled {
  color: #ccc;
  pointer-events: none;
}

/* Subscribe Section */
.subscribe {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.subscribe h2 {
  color: white;
}

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

.subscribe-form input {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
}

/* Blog Post Single */
.blog-post {
  padding: 60px 0;
}

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

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

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

.lead {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
}

.post-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

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

.post-content img {
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

blockquote {
  background-color: var(--light-color);
  padding: 20px;
  border-left: 4px solid var(--secondary-color);
  margin: 30px 0;
  font-style: italic;
}

.post-tags {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

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

.post-tags a {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--light-color);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

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

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

.author-info h4 {
  margin-bottom: 10px;
}

.author-info p {
  margin-bottom: 0;
}

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

.related-posts h3 {
  margin-bottom: 30px;
}

.related-posts .post-card {
  display: flex;
  flex-direction: column;
}

.related-posts .post-card img {
  height: 150px;
}

.post-navigation {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
}

.prev-post, .next-post, .back-to-blog {
  padding: 10px 0;
}

/* Gallery Page */
.gallery-filter {
  margin-bottom: 40px;
}

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

.filter-btn {
  padding: 8px 20px;
  background-color: var(--light-color);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

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

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 20px;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-caption h3 {
  color: white;
  margin-bottom: 5px;
}

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

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

.lightbox-content {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.close-lightbox {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

.lightbox-caption {
  color: white;
  text-align: center;
  padding: 10px 0;
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

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

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

.about-text h3 {
  margin-top: 0;
}

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

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

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

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

.team-member:hover {
  transform: translateY(-5px);
}

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

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

.team-member p {
  padding: 0 20px;
  margin-bottom: 20px;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
}

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

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-color);
}

.social-links a:hover svg {
  fill: white;
}

.awards {
  padding: 60px 0;
}

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

.award {
  text-align: center;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

.award i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: block;
}

.award h4 {
  margin-bottom: 10px;
}

.award p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

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

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

.info-card {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.info-card h4 {
  margin-bottom: 5px;
}

.info-card p, .info-card address {
  margin-bottom: 0;
  font-style: normal;
}

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

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

.social-icon {
  width: 24px;
  height: 24px;
  fill: var(--secondary-color);
  transition: var(--transition);
}

.social-icon:hover {
  fill: var(--primary-color);
  transform: translateY(-2px);
}

.contact-form-container {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.map-container {
  margin-top: 60px;
}

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

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

.faq-section {
  background-color: var(--light-color);
  padding: 60px 0;
}

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

.faq-item {
  background-color: white;
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.faq-item h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

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

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

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}

.icon-success {
  display: block;
  font-size: 3rem;
  color: #2ecc71;
  margin-bottom: 20px;
}

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

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

.footer-logo h3 {
  color: white;
  margin-top: 10px;
}

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

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

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

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

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

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

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.footer-social .social-icons {
  margin-top: 0;
}

.footer-social .social-icon {
  fill: rgba(255, 255, 255, 0.8);
}

.footer-social .social-icon:hover {
  fill: white;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 10px;
}

.footer-policies {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(52, 73, 94, 0.95);
  color: white;
  padding: 20px;
  z-index: 999;
  display: none;
}

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

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

.cookie-more-info {
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

/* Icons */
.icon-camera:before {
  content: "📷";
}

.icon-light:before {
  content: "💡";
}

.icon-portrait:before {
  content: "👤";
}

.icon-landscape:before {
  content: "🏞️";
}

.icon-event:before {
  content: "🎭";
}

.icon-product:before {
  content: "📦";
}

.icon-services:before {
  content: "🛠️";
}

.icon-quote:before {
  content: "💬";
}

.icon-star:before {
  content: "⭐";
}

.icon-blog:before {
  content: "📝";
}

.icon-gallery:before {
  content: "🖼️";
}

.icon-about:before {
  content: "ℹ️";
}

.icon-contact:before {
  content: "📞";
}

.icon-location:before {
  content: "📍";
}

.icon-phone:before {
  content: "📱";
}

.icon-email:before {
  content: "📧";
}

.icon-camera-body:before {
  content: "📷";
}

.icon-lens:before {
  content: "🔍";
}

.icon-tripod:before {
  content: "🏗️";
}

.icon-accessory:before {
  content: "🧰";
}

.icon-computer:before {
  content: "💻";
}

.icon-money:before {
  content: "💰";
}

.icon-conclusion:before {
  content: "🏁";
}

.icon-sunrise:before {
  content: "🌅";
}

.icon-clock:before {
  content: "🕒";
}

.icon-sun:before {
  content: "☀️";
}

.icon-cloud:before {
  content: "☁️";
}

.icon-window:before {
  content: "🪟";
}

.icon-silhouette:before {
  content: "👥";
}

.icon-camera-settings:before {
  content: "⚙️";
}

.icon-weather:before {
  content: "🌦️";
}

.icon-story:before {
  content: "📚";
}

.icon-mission:before {
  content: "🚀";
}

.icon-team:before {
  content: "👥";
}

.icon-award:before {
  content: "🏆";
}

.icon-trophy:before {
  content: "🏆";
}

.icon-medal:before {
  content: "🥇";
}

.icon-certificate:before {
  content: "📜";
}

.icon-info:before {
  content: "ℹ️";
}

.icon-message:before {
  content: "✉️";
}

.icon-map:before {
  content: "🗺️";
}

.icon-faq:before {
  content: "❓";
}

.icon-success:before {
  content: "✅";
}

.icon-mail:before {
  content: "📬";
}

.icon-edit:before {
  content: "✏️";
}

.icon-business:before {
  content: "💼";
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }
  
  .logo-container {
    margin-bottom: 20px;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px 10px;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
