/* Base Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --light-color: #ecf0f1;
  --dark-color: #1a252f;
  --text-color: #333;
  --text-light: #7f8c8d;
  --border-color: #ddd;
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
  --radius: 5px;
  --container-width: 1200px;
  --section-spacing: 100px;
  --gradient: linear-gradient(135deg, #2c3e50, #3498db);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 20px;
}

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

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

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

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

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

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

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

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Header */
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);
  padding: 15px 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
  max-width: 150px;
}

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

nav ul {
  display: flex;
}

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

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

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 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%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin-bottom: 5px;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
  text-align: center;
  margin-bottom: var(--section-spacing);
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  background-image: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  margin-bottom: 60px;
}

.page-banner h1 {
  color: white;
  margin-bottom: 15px;
}

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

/* Featured Posts */
.featured-posts {
  padding: 0 0 var(--section-spacing);
}

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

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.post-card {
  background-color: white;
  border-radius: var(--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.15);
}

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

.post-content {
  padding: 25px;
}

.post-content .date {
  color: var(--text-light);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

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

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

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

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

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

/* Blog Section */
.blog-section {
  padding: 0 0 var(--section-spacing);
}

.blog-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  max-width: 400px;
  width: 100%;
}

.search-box input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
}

.search-box button {
  padding: 0 20px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
}

.category-filter select {
  padding: 12px 30px 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233498db' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  outline: none;
  cursor: pointer;
  width: 200px;
}

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

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

.blog-post:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.post-image {
  height: 100%;
}

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

.post-meta {
  display: flex;
  margin-bottom: 15px;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  color: var(--text-light);
  font-size: 14px;
}

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

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination a, .pagination span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

.pagination a:hover {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

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

.pagination a.next, .pagination a.prev {
  width: auto;
  padding: 0 15px;
}

/* Portfolio Styles */
.portfolio-filters {
  margin-bottom: 40px;
}

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

.filter-btn {
  background-color: transparent;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  padding: 8px 25px;
  margin: 0 10px 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

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

.gallery-image {
  position: relative;
  overflow: hidden;
}

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

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.overlay-content {
  text-align: center;
  color: white;
  padding: 20px;
  transform: translateY(20px);
  transition: var(--transition);
}

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

.overlay-content h3 {
  color: white;
  margin-bottom: 10px;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.view-project {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.view-project:hover {
  background-color: white;
  color: var(--secondary-color);
}

/* Testimonials */
.testimonials {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
  margin-bottom: var(--section-spacing);
}

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

.testimonial {
  padding: 30px 20px;
}

.testimonial-content {
  background-color: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-content:before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(52, 152, 219, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.client-info h4 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

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

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: var(--border-color);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

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

/* About Page */
.about-story {
  margin-bottom: 80px;
}

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

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

.about-content h2 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

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

.our-approach {
  background-color: #f9f9f9;
  padding: 80px 0;
  margin-bottom: 80px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

.approach-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.approach-icon i {
  font-size: 30px;
  color: var(--secondary-color);
}

.approach-item h3 {
  margin-bottom: 15px;
}

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

/* Team Section */
.team-section {
  margin-bottom: 80px;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

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

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

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

.member-info {
  padding: 25px;
}

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

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

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

.member-social {
  display: flex;
  justify-content: center;
}

.member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}

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

/* Equipment Section */
.equipment {
  background-color: #f9f9f9;
  padding: 80px 0;
  margin-bottom: 80px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

.equipment-category h3 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.equipment-category h3 i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.equipment-category ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.equipment-category ul li:last-child {
  border-bottom: none;
}

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

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

.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.2rem;
}

/* Contact Page */
.contact-section {
  padding-bottom: 80px;
}

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

.contact-info h2 {
  margin-bottom: 30px;
}

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

.info-item i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.contact-form h2 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  width: calc(50% - 10px);
  display: inline-block;
}

.form-group.full-width {
  width: 100%;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 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;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  margin-top: 10px;
}

/* Map Section */
.map-section {
  margin-bottom: 80px;
}

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

.map-placeholder {
  height: 100%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  margin-bottom: var(--section-spacing);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

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

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

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

/* Newsletter */
.newsletter {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f9f9;
  margin-bottom: var(--section-spacing);
}

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

.newsletter p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  padding: 0 30px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px;
}

/* Clock Section */
.clock-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f9f9f9;
  margin-bottom: var(--section-spacing);
}

.clock-widget {
  max-width: 400px;
  margin: 0 auto;
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

#digital-clock {
  font-size: 3rem;
  color: white;
  font-weight: 700;
  letter-spacing: 2px;
}

/* Comparison Table */
.comparison-table {
  padding: 0 0 var(--section-spacing);
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
  margin-top: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  font-weight: 600;
}

tbody tr:nth-child(even) {
  background-color: rgba(52, 152, 219, 0.05);
}

tbody tr:hover {
  background-color: rgba(52, 152, 219, 0.1);
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 2fr;
  gap: 30px;
  margin-bottom: 50px;
}

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

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 15px;
}

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

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

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

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

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

.social-icons {
  display: flex;
  flex-wrap: wrap;
}

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

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.cookie-buttons button {
  margin: 0 10px 10px 0;
}

.cookie-more-info {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

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

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

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

.thank-you-message i {
  font-size: 50px;
  color: #2ecc71;
  margin-bottom: 20px;
}

.thank-you-message h2 {
  margin-bottom: 15px;
}

.thank-you-message p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.close-btn {
  padding: 12px 30px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-logo, .footer-contact, .footer-social {
    grid-column: span 3;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-links h3:after, 
  .footer-contact h3:after, 
  .footer-social h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-post {
    grid-template-columns: 1fr;
  }
  
  .post-image img {
    height: 300px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 60px;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 20px;
  }
  
  nav {
    width: 100%;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .post-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-right: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 15px;
  }
  
  .newsletter-form button {
    width: 100%;
    border-radius: var(--radius);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav {
    display: none;
  }
  
  nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  nav.active ul {
    flex-direction: column;
    padding: 20px 0;
  }
  
  nav.active ul li {
    margin: 0;
  }
  
  nav.active ul li a {
    display: block;
    padding: 15px 20px;
  }
  
  .form-group {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-logo, .footer-contact, .footer-social, .footer-links {
    grid-column: span 1;
  }
}
