/* Global Styles */
:root {
  --primary-color: #153b2c; /* Dark forest green */
  --secondary-color: #d4d7c4; /* Light sage green */
  --accent-color: #2d5a3d; /* Medium green for hover states */
  --text-color: #2c3e2d;
  --light-gray: #f5f6f4;
  --dark-gray: #4a5c4b;
  --shadow: 0 8px 25px rgba(21, 59, 44, 0.15);
  --light-shadow: 0 4px 15px rgba(21, 59, 44, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: #fefffe;
  font-weight: 400;
  letter-spacing: -0.01em;
}

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

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

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

.btn {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white !important;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(21, 59, 44, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 59, 44, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color) !important;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white !important;
}

.btn-out.client-logo:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

/* Header Styles */
header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(254, 255, 254, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(21, 59, 44, 0.1);
  border-bottom: 1px solid rgba(21, 59, 44, 0.05);
}

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

.header-container .logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo {
  display: inline;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-sub {
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  margin-left: -4px;
}

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

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

nav ul li a {
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  padding: 8px 0;
}

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

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

/* Hero Section */
.hero {
  padding: 200px 0 140px;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--secondary-color) 30%, #e8ebe3 70%, var(--light-gray) 100%);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 59, 44, 0.08) 0%, transparent 60%);
  top: -300px;
  right: -300px;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero:after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 215, 196, 0.4) 0%, transparent 60%);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(21, 59, 44, 0.1);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--dark-gray);
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: white;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

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

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title p {
  font-size: 1.15rem;
  color: var(--dark-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

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

.service-card {
  background: white;
  padding: 45px 35px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(21, 59, 44, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(21, 59, 44, 0.06);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(21, 59, 44, 0.15);
  border-color: rgba(21, 59, 44, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e8ebe3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  margin: 0 auto 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(21, 59, 44, 0.2);
}

.service-card:hover .service-icon i {
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--accent-color);
}

.service-card p {
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Why Choose Us Section */
.why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9f7 50%, var(--secondary-color) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(21, 59, 44, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

.why-us-card {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 30px rgba(21, 59, 44, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(21, 59, 44, 0.05);
  position: relative;
  overflow: hidden;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-us-card:hover::before {
  transform: scaleX(1);
}

.why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(21, 59, 44, 0.15);
  border-color: rgba(21, 59, 44, 0.1);
}

.why-us-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.why-us-card h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 1px;
}

.why-us-card p {
  color: var(--dark-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* Clients Section */
.clients {
  padding: 120px 0;
  background: linear-gradient(135deg, white 0%, #fafbfa 100%);
  position: relative;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.clients-grid img {
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.clients-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

body.no-scroll {
  overflow: hidden;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    justify-content: space-between;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .main-nav.mobile-open {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .main-nav ul li a {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .hamburger {
    display: block;
  }

  .hamburger .fa-times {
    display: none;
  }

  .main-nav.mobile-open ~ .hamburger .fa-bars {
    display: none;
  }

  .main-nav.mobile-open ~ .hamburger .fa-times {
    display: block;
    color: white;
  }
}


/* CTA Section */
.cta {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #1a4230 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta:before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  top: -300px;
  right: -300px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.cta:after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 215, 196, 0.1) 0%, transparent 60%);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
  animation: float 12s ease-in-out infinite reverse;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: white !important;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95) !important;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.cta .btn {
  background: white !important;
  color: var(--primary-color) !important;
  font-weight: 600;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta .btn:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--primary-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #1a4230 100%);
  color: white !important;
  padding: 90px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-logo {
  color: white !important;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: inline;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-logo-sub {
  font-weight: 400;
  margin-left: -2px;
}

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

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  font-weight: 600;
  color: white !important;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
}

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

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col ul li a:hover {
  color: white !important;
  padding-left: 5px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
}

.footer .logo {
  margin-bottom: 20px;
  color: #fff;
}

/* About Page */
.page-header {
  padding: 150px 0 80px;
  background-color: var(--secondary-color);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-section {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content {
  text-align: center;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.company-details-container {
  max-width: 800px;
  margin: 0 auto;
}

.company-detail-card {
  margin-top: 30px;
}

/* Vision Section - Quote */
.vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f8f9f7 100%);
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 60px;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(21, 59, 44, 0.1);
  border-top: 4px solid var(--primary-color);
}

.quote-container blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.7;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}

.quote-container blockquote::before {
  content: '“';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--light-gray);
  position: absolute;
  top: -20px;
  left: -60px;
  line-height: 1;
  z-index: -1;
}

.quote-container cite {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 1.1rem;
  text-align: right;
}

.quote-container cite strong {
  font-weight: 700;
  color: var(--primary-color);
}

/* Services Page */
.services-page {
  padding: 100px 0;
}

.service-detailed {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.service-detailed:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.service-detailed:nth-child(even) .service-detailed-image {
  order: 2;
}

.service-detailed-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detailed-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detailed-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-detailed-content p {
  margin-bottom: 20px;
}

.service-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.service-feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.service-feature-list li::before {
  content: '\f058'; /* Font Awesome check-circle icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
}

/* Contact Page */
.contact-section {
  padding: 100px 0;
}

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

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon i {
  color: var(--primary-color);
}

.contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--light-shadow);
  border: 1px solid rgba(21, 59, 44, 0.05);
}

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

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #fefffe;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(21, 59, 44, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}


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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 25px;
  box-shadow: 0 -6px 30px rgba(21, 59, 44, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-top: 1px solid rgba(21, 59, 44, 0.1);
}

.cookie-text {
  flex: 1;
  padding-right: 25px;
}

.cookie-text p {
  margin: 0;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.cookie-buttons .btn-outline {
  color: var(--primary-color) !important;
}

.cookie-buttons .btn-outline:hover {
  background-color: var(--primary-color);
  color: white !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .about-grid,
  .contact-grid,
  .service-detailed,
  .service-detailed:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .service-detailed-image,
  .service-detailed:nth-child(even) .service-detailed-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  .logo-main {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .services,
  .why-us,
  .clients,
  .cta,
  .about-section,
  .team-section,
  .services-page,
  .contact-section {
    padding: 60px 0;
  }
  
  .page-header {
    padding: 120px 0 60px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    margin-bottom: 15px;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  nav ul li {
    margin-left: 15px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
}