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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
}

.text-primary {
  color: #2c5aa0;
}

.text-secondary {
  color: #4a6fa5;
}

.text-dark {
  color: #222;
}

.text-light {
  color: #777;
}

.text-white {
  color: #fff;
}


.bg-primary {
  background-color: #2c5aa0;
}

.bg-secondary {
  background-color: #4a6fa5;
}

.bg-dark {
  background-color: #222;
}

.bg-light {
  background-color: #f8f9fa;
}

.bg-white {
  background-color: #fff;
}

.bg-hero-overlay {
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.6) 0%, rgba(44, 90, 160, 0.65) 50%, rgba(44, 90, 160, 0.68) 100%);
}

.bg-primary .contact-item h4, 
.bg-primary .contact-item p {
  color: #333;
}

.bg-primary .process-content p {
  color: #222;
}

.bg-primary .equipment-item h4, .bg-primary .equipment-item p {
  color: #2c5aa0;
}

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

.container-fluid {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

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

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

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
}

.col-4 {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 10px;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px;
}


.mt-2 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 32px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 48px;
}

.mb-6 {
  margin-bottom: 64px;
}

.pt-5 {
  padding-top: 48px;
}

.pt-6 {
  padding-top: 64px;
}

.pb-5 {
  padding-bottom: 48px;
}

.pb-6 {
  padding-bottom: 64px;
}

.p-4 {
  padding: 32px;
}

.p-5 {
  padding: 48px;
}

.p-6 {
  padding: 64px;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 1);
  padding: 12px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5aa0;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-symbol {
  width: 32px;
  height: 32px;
  background-color: #2c5aa0;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-symbol::before {
  content: "🧹";
  font-size: 16px;
  color: white;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2c5aa0;
}

.nav-link.active {
  color: #2c5aa0;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2c5aa0;
}


.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  min-width: 200px;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu-link {
  display: block;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.mobile-menu-link:hover {
  background-color: #f8f9fa;
}


.hero-section {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 90, 160, 0.7) 0%, rgba(44, 90, 160, 0.75) 50%, rgba(44, 90, 160, 0.78) 100%);
  z-index: 1;
  animation: overlayFadeIn 1.5s ease-out;
}

.hero-main {
  height: 100vh;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: heroTitleFadeIn 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  font-weight: 300;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.4);
  animation: heroSubtitleFadeIn 1.4s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
  color: white;
}

.hero-cta {
  display: inline-block;
  background-color: #ffffff;
  color: #2c5aa0;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: heroButtonFadeIn 1.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #2c5aa0;
}

.hero-cta.secondary {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  margin: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta.secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}


.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
  color: #666;
}


.service-card {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background-color: #f0f4f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
}

.service-description {
  color: #666;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 16px;
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background-color: #2c5aa0;
  color: white;
}

.btn-primary:hover {
  background-color: #1e4a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
  background-color: #f8f9fa;
  color: #333;
  border: 2px solid #e9ecef;
}

.btn-secondary:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
}


.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #222;
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 16px;
}


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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background-color: #f0f4f8;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.team-position {
  color: #666;
  margin-bottom: 12px;
}

.about-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
}

.story-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.story-image:hover {
  transform: translateY(-5px);
}

.story-content {
  padding: 20px;
}

.commitment-content {
  padding: 20px;
}

.commitment-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.commitment-image:hover {
  transform: translateY(-5px);
}

.achievement-card {
  background-color: white;
  border-radius: 12px;
  padding: 32px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.achievement-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c5aa0;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5aa0;
  font-weight: bold;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-area {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-area:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-area h4 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
}

.service-area p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.pricing-info {
  padding: 20px;
}

.pricing-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.pricing-image:hover {
  transform: translateY(-5px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 90, 160, 0.9) 0%, rgba(44, 90, 160, 0.6) 50%, transparent 100%);
  color: white;
  padding: 32px 24px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.portfolio-overlay h4 {
  margin: 0 0 8px 0;
  font-size: 1.3rem;
  color: white;
}

.portfolio-overlay p {
  margin: 0 0 16px 0;
  color: #e3f2fd;
  font-size: 0.9rem;
}

.portfolio-category {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.case-studies {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-study {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-study-header {
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f4f8;
}

.case-study-header h3 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
  font-size: 1.5rem;
}

.case-study-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.case-location,
.case-size,
.case-duration {
  background-color: #f0f4f8;
  color: #2c5aa0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.case-study-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.case-study-left {
  flex: 2;
}

.case-study-right {
  flex: 1;
}

.case-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-stat {
  text-align: center;
}

.case-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 4px;
}

.case-stat-label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-area-card {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-area-card h4 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
  font-size: 1.25rem;
}

.service-area-card p {
  margin: 0 0 20px 0;
  color: #666;
  line-height: 1.6;
}

.area-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.area-stat {
  background-color: #f0f4f8;
  color: #2c5aa0;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-project {
  background-color: #e3f2fd;
  color: #2c5aa0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 8px;
  display: inline-block;
}

.benefit-card {
  background-color: white;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background-color: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.benefit-card h4 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
  font-size: 1.25rem;
}

.benefit-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.culture-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.culture-left {
  flex: 2;
}

.culture-right {
  flex: 1;
}

.culture-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.job-listings {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.job-listing {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.job-header {
  padding: 24px 32px;
  border-bottom: 2px solid #f0f4f8;
}

.job-header h3 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
}

.job-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.job-type,
.job-location,
.job-salary {
  background-color: #f0f4f8;
  color: #2c5aa0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.job-content {
  padding: 24px 32px;
}

.job-content h4 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.job-content ul {
  margin-bottom: 20px;
}

.job-content li {
  margin-bottom: 8px;
  color: #666;
  line-height: 1.6;
}

.job-cta {
  background-color: #f8f9fa;
  border-radius: 0 0 12px 12px;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.job-contact {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.hiring-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.process-number {
  background-color: #2c5aa0;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-content {
  flex: 1;
}

.process-content h4 {
  margin: 0 0 8px 0;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.process-content p {
  margin: 0;
  color: #e3f2fd;
  line-height: 1.6;
}

.process-overview {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-category {
  margin-bottom: 32px;
}

.process-category h3 {
  margin: 0 0 24px 0;
  color: #2c5aa0;
  font-size: 1.5rem;
  border-bottom: 2px solid #f0f4f8;
  padding-bottom: 12px;
}

.process-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.process-icon {
  background-color: #f0f4f8;
  color: #2c5aa0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-item-content {
  flex: 1;
}

.process-item-content h4 {
  margin: 0 0 8px 0;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.process-item-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

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

.quality-card {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.quality-icon {
  background-color: #f0f4f8;
  color: #2c5aa0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.quality-card h4 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
  font-size: 1.25rem;
}

.quality-card p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

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

.equipment-item {
  background-color: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.equipment-icon {
  background-color: #f0f4f8;
  color: #2c5aa0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.equipment-item h4 {
  margin: 0 0 16px 0;
  color: #e3f2fd;
  font-size: 1.25rem;
}

.equipment-item p {
  margin: 0;
  color: #e3f2fd;
  line-height: 1.6;
}


.contact-info {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #f0f4f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: #2c5aa0;
}

.contact-form {
  background-color: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #2c5aa0;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}


.site-footer {
  background-color: #222;
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 32px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: #fff;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #2c5aa0;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 32px;
  text-align: center;
  color: #ccc;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(34, 34, 34, 0.95);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1001;
  backdrop-filter: blur(10px);
}

.cookie-content {
  flex-grow: 1;
  margin-right: 20px;
}

.cookie-link {
  color: #2c5aa0;
  text-decoration: none;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #2c5aa0;
  color: white;
}

.cookie-btn.decline {
  background-color: #6c757d;
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #1e4a8a;
}

.cookie-btn.decline:hover {
  background-color: #5a6268;
}


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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

.rounded {
  border-radius: 8px;
}

.shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .col, .col-6, .col-4, .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .cookie-consent-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .cookie-content {
    margin-right: 0;
  }
  
  .cookie-btn {
    margin-left: 0;
    width: 100%;
    max-width: 200px;
  }
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


strong, b {
  color: inherit;
}


* {
  transition: all 0.3s ease;
}


button {
  background: none;
  border: none;
  cursor: pointer;
}


.form-input:focus,
.nav-link:focus {
  outline: 2px solid #2c5aa0;
  outline-offset: 2px;
}


 @keyframes overlayFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes heroTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSubtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroButtonFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service Details Section */
.service-details {
  padding: 80px 0;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.service-info {
  flex: 1;
  min-width: 300px;
}

.subsection-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c5aa0;
  margin-bottom: 16px;
  margin-top: 32px;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.service-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5aa0;
  font-weight: bold;
}

.process-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.process-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.process-steps {
  margin-bottom: 32px;
}

.process-step {
  display: flex;
  margin-bottom: 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  align-items: center;
}

.step-number {
  background-color: #2c5aa0;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 8px 0;
  color: #2c5aa0;
}

.step-content p {
  margin: 0;
  color: #666;
}

.service-pricing {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 16px;
}

.price-item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.price-item h4 {
  margin: 0 0 8px 0;
  color: #2c5aa0;
  font-size: 1rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 8px;
}

.price-note {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.service-cta {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
}

.service-cta h3 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
}

.need-list,
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.need-list li,
.benefits-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 20px;
}

.need-list li:before,
.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5aa0;
  font-weight: bold;
}

/* Sidebar */
.service-sidebar {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

.sidebar-widget h4 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
  font-size: 1.1rem;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

/* Testimonial Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* Emergency Note */
.emergency-note {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.emergency-note p {
  margin: 0;
  color: #856404;
  font-weight: 500;
}

/* Move-in Pricing */
.move-in-pricing {
  background-color: #e8f5e8;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
}

.move-in-pricing h4 {
  margin: 0 0 8px 0;
  color: #2c5aa0;
}

.move-in-pricing p {
  margin: 0;
  color: #666;
}

/* Medical Protocols */
.protocols-list {
  margin-bottom: 32px;
}

.protocol-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

.protocol-item h4 {
  margin: 0 0 12px 0;
  color: #2c5aa0;
}

.protocol-item p {
  margin: 0;
  color: #666;
}

/* Contact Sidebar */
.contact-sidebar {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-sidebar h4 {
  margin: 0 0 16px 0;
  color: #2c5aa0;
  font-size: 1.1rem;
  border-bottom: 2px solid #2c5aa0;
  padding-bottom: 8px;
}

.contact-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.contact-sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
}

.contact-sidebar li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5aa0;
  font-weight: bold;
}

.quote-info,
.response-time {
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  border-left: 4px solid #2c5aa0;
}

.quote-info h4,
.response-time h4 {
  margin: 0 0 8px 0;
  color: #2c5aa0;
  font-size: 1rem;
}

.quote-info p,
.response-time p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: white;
  border: none;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  font-weight: 600;
  color: #333;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question span:first-child {
  flex: 1;
}

.faq-icon {
  font-size: 1.2rem;
  color: #2c5aa0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  background-color: #f8f9fa;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .site-header, .cookie-consent-banner, .mobile-menu {
    display: none !important;
  }
  
  body {
    background-color: white;
  }
}