body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  background: #F5F7FA;
  color: #1C2D4A;
  line-height: 1.5;
}

/* Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  margin: 0 1rem;
}

.main-nav a:not(.button-primary) {
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
}

.main-nav a:not(.button-primary).active {
  font-weight: 600;
}

.main-nav a:not(.button-primary).active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #F4B400;
  border-radius: 3px 3px 0 0;
}

.hero-slider {
  position: relative;
  width: 100vw;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 0 1rem;
  z-index: 3;
}

.hero-text {
  max-width: 800px;
  padding: 2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin: 0 0 1.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-cta {
  display: inline-block;
  background: #1C2D4A;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.slide.active .hero-cta {
  opacity: 1;
}

.hero-cta:hover {
  background: #2c3e50;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-cta:active {
  transform: translateY(0) !important;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.slider-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

.slider-nav svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .slider-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .slider-dots {
    bottom: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

header h2 {
  font-size: 3rem;
  margin: 0;
}

header p,
.service-box h3 {
  font-weight: 600;
}

.intro-text {
  font-size: 1.25rem
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section h1 {
  font-size: 2.5rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  gap: 1rem;
}

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

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta {
    border-radius: 0.5rem;
  }
}

.button-primary {
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 600;
}

.button-primary:hover {
  background: #142136;
}

.service-box {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.button-primary,
.cta {
  background: #1C2D4A;
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #6c7a89;
}

.section ul {
  margin-bottom: 1.5rem;
}

.section ul li {
  margin-bottom: 0.5rem;
}

.step-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  counter-increment: step;
  display: flex;
  align-items: center;
}

.step-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  background: #1C2D4A;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  flex: 1;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.step-content .diagram {
  display: block;
  margin: 1.5rem auto;
  width: 80%;  
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .main-nav ul {
    align-items: center;
    gap: 1.25rem;
  }

  .main-nav .button-primary {
    display: inline-block;
  }
}

a.service-box,
header a {
  text-decoration: none;
  color: inherit;
}

a.service-box:hover {
  opacity: 0.7;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cta-button.primary {
  background-color: #1C2D4A;
  color: white;
  border: 2px solid #1C2D4A;
}

.cta-button.primary:hover {
  background-color: #142136;
  border-color: #142136;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
  background-color: #4299E1;
  color: white;
  border: 2px solid #4299E1;
}

.cta-button.secondary:hover {
  background-color: #3182CE;
  border-color: #3182CE;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button.outline {
  background-color: transparent;
  color: #1C2D4A;
  border: 2px solid #1C2D4A;
}

.cta-button.outline:hover {
  background-color: rgba(28, 45, 74, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-button {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #1C2D4A;
}

.progress-wrapper progress {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 0.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #E0E4EA;
}

.progress-wrapper progress::-webkit-progress-bar {
  background: #E0E4EA;
}

.progress-wrapper progress::-webkit-progress-value {
  background: #1C2D4A;
}

.progress-wrapper progress::-moz-progress-bar {
  background: #1C2D4A;
}

.booking-header { background:#fff; box-shadow:none; }

.booking-main {
  max-width:600px;
  margin:2.5rem auto 4rem;
  padding:0 1rem;
  text-align:center;
}

.booking-title {
  font-size:2.2rem;
  margin:0 0 0.75rem;
  color:#1C2D4A;
}

.booking-sub {
  font-size:1.25rem;
  margin-bottom:2rem;
  color:#1C2D4A;
}

/* Calendar container */
.calendar-box {
  background:#fff;
  border-radius:0.75rem;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  padding:1rem;
  margin-bottom:2rem;
}

#my-cal-inline { width:100%; min-height:600px; }

@media (max-width:500px) {
  .booking-title { font-size:1.8rem; }
}

/* Product Box Styles */
.product-box {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.product-box h3 {
  margin-top: 0;
  color: #142136;
  width: 100%;
  margin-bottom: 0.5rem;
}

.product-box .product-content {
  flex: 1;
  margin-right: 2rem;
}

.product-box p {
  margin: 0.5rem 0;
}

.product-box .product-cta {
  display: inline-flex;
  align-items: center;
  background: #142136;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
  white-space: nowrap;
  margin: 0;
}

.product-box .product-cta:hover {
  background: #1e293b;
}

@media (max-width: 767px) {
  .product-box {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .product-box .product-content {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 100%;
  }
  
  .product-box .product-cta {
    width: 100%;
    justify-content: center;
  }
}
