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

body {
  font-family: "Inter", sans-serif;
  color: #edffed;
  background: #a3b2e2;
}

/* Slide Layout */
.slide {
  padding: 60px;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
      font-family: "Boldonse", system-ui;
      color: rgb(19, 69, 75);
}

h3 {
  font-family: sans-serif;
  margin-bottom: 20px;
  color: #737dc5;
}

p, ul {
  margin-bottom: 20px;
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Images */
.img-row {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.img-row img {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
}

/* Navigation Arrows */
.arrow {
  font-size: 2rem;
  text-decoration: none;
  color: #22444A;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Hover */
.arrow:hover {
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 700px) {
  .slide {
    padding: 40px 20px;
  }

  .img-row {
    flex-direction: column;
  }
}
/* Split layout for the audit page */
.split-layout {
  display: flex;
  padding: 40px;
  gap: 40px;
  height: 100vh; /* makes layout fill full screen */
}

/* Left Section */
.left-content {
  flex: 0.8; /* smaller */
  max-width: 350px;
}

/* Right Scroll Panel */
.right-panel {
  flex: 2.2; /* MUCH larger */
  max-width: none; /* allows full expansion */
  border-left: 1px solid #ddd;
  padding-left: 25px;
  height: 100%; 
  display: flex;
  flex-direction: column;
}

.panel-title {
  font-family: "Boldonse", system-ui;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

/* Scroll area */
.panel-scroll {
  flex-grow: 1; /* fills entire right-side height */
  max-height: 100%;
  overflow-y: auto;
  padding-right: 15px;
}

.panel-scroll::-webkit-scrollbar {
  width: 8px;
}

.panel-scroll::-webkit-scrollbar-thumb {
  background: #737dc5;
  border-radius: 4px;
}

/* Images inside the panel */
.panel-img {
  width: 100%;
  margin: 10px 0 25px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 900px) {
  .split-layout {
    flex-direction: column;
    height: auto;
  }

  .right-panel {
    border-left: none;
    border-top: 1px solid #ddd;
    padding-top: 20px;
  }

  .panel-scroll {
    max-height: 60vh;
  }
}

/* Images inside the panel */
.panel-img {
  width: 100%;
  margin: 10px 0 25px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 800px) {
  .split-layout {
    flex-direction: column;
  }

  .right-panel {
    max-width: 100%;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #ddd;
    padding-top: 20px;
  }

  .panel-scroll {
    max-height: 50vh;
  }
}
.button {
  display: inline-block;
  padding: 10px 20px;
  background:rgb(19, 69, 75);
  color: #edffed;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
}
.button:hover {
  opacity: 0.7;
}
.boldonse-regular {
  font-family: "Boldonse", system-ui;
  font-weight: 400;
  font-style: normal;
}
.ThankYou {
  font-family: "Boldonse", system-ui;
  font-size: xx-large;
  text-align: center;
  margin-top: 300px;
}
