/* SERVICES SECTION */

#section2.Products-container {
  position: relative;
  text-align: center;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* MAIN CONTENT */
#section2 .slide-content.Product-content {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* CONTENT WRAPPER - SCROLLABLE BUT HIDDEN */
#section2 .Products-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 5;
  height: 85vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* HIDE SCROLLBAR */
#section2 .Products-content-wrapper::-webkit-scrollbar {
  display: none;
}

/* TYPOGRAPHY */
#section2 .Product-content h1 {
  font-family: 'Century Gothic', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 15px;
}

#section2 .Product-tagline {
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
}

#section2 .Product-tagline .highlight {
  font-weight: bold;
  color: var(--secondary-color);
}

#section2 .Productdescription {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* LOGO  */
#section2 .Product-content .Productlogo {
  margin: 20px 0;
}

#section2 .Productlogo img {
  width: 250px;
  height: auto;
  max-width: 100%;
}

/* PRINCIPLES */
#section2 .Productprinciples {
  text-align: center;
  margin-top: 10px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  max-height: 45vh;
  overflow-y: auto;
}

#section2 .Principle {
  margin-bottom: 20px;
}

#section2 .Principle h4 {
  font-weight: bold;
  font-family: var(--font-secondary);
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

#section2 .Principle p {
  font-size: 14px;
  font-family: var(--font-primary);
  line-height: 1.5;
  color: var(--primary-color);
}

/* SCROLLBAR  */
#section2 .Productprinciples::-webkit-scrollbar {
  width: 6px;
}

#section2 .Productprinciples::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

#section2 .Productprinciples::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.cta-container {
  margin-top: 25px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color, #2c5aa0);
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
  border: 2px solid transparent;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  opacity: 0.9;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(44, 90, 160, 0.4);

}

.cta-button:active {
  transform: translateY(0);
}

/* MOBILE - SMALL (≤480px) */
@media (max-width: 480px) {
  #section2 .slide-content.Product-content {
    padding: 12px;
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 80px;
  }

  #section2 .Product-content h1 {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  #section2 .Productlogo img {
    width: 100px;
    height: auto;
    margin: 8px 0;
  }

  #section2 .Product-tagline {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  #section2 .Productdescription {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  #section2 .Productprinciples {
    padding: 0 4px;
    max-height: 30vh;
  }

  #section2 .Principle {
    margin-bottom: 10px;
  }

  #section2 .Principle h4 {
    font-size: 12px;
    margin-bottom: 3px;
  }

  #section2 .Principle p {
    font-size: 10px;
    line-height: 1.3;
  }

  #section2 .Product-content>* {
    margin-bottom: 4px !important;
  }

  .cta-button {
    padding: 8px 18px;
    font-size: 13px;
  }

  .cta-container {
    margin-top: 15px;
  }
}

/* SMALL-MEDIUM DEVICES (481px–640px) */
@media (min-width: 481px) and (max-width: 640px) {
  #section2 .slide-content.Product-content {
    padding: 20px 16px;
    justify-content: flex-start;
    padding-top: 80px;
  }

  #section2 .Product-content h1 {
    font-size: 18px;
  }

  #section2 .Productlogo img {
    width: 130px;
  }

  #section2 .Product-tagline {
    font-size: 13px;
  }

  #section2 .Productdescription {
    font-size: 12px;
  }

  #section2 .Productprinciples {
    max-height: 38vh;
  }
}

/* MEDIUM DEVICES (641px–768px) */
@media (min-width: 641px) and (max-width: 768px) {
  #section2 .slide-content.Product-content {
    padding: 30px 20px;
    justify-content: flex-start;
    padding-top: 80px;
  }

  #section2 .Product-content h1 {
    font-size: 20px;
  }

  #section2 .Productlogo img {
    width: 150px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  #section2 .Products-container {
    padding: 15px;
    min-height: 100vh;
  }

  #section2 .slide-content.Product-content {
    padding-top: 80px;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: flex-start;
    height: auto;
    min-height: 100vh;
    box-sizing: border-box;
  }

  #section2 .Products-content-wrapper {
    height: 82vh;
    padding-top: 10px;
  }

  #section2 .Product-content h1 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    padding-top: 10px;
  }

  #section2 .Productlogo img {
    width: 120px;
    margin: 10px 0;
  }

  #section2 .Product-tagline {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  #section2 .Productdescription {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  #section2 .Productprinciples {
    max-height: 35vh;
    padding: 0 5px;
    margin-top: 15px;
  }

  #section2 .Principle h4 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  #section2 .Principle p {
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 5px;
  }

  /* Additional spacing reductions */
  #section2 .Product-content>* {
    margin-bottom: 5px !important;
  }

  .cta-button {
    padding: 10px 22px;
    font-size: 14px;
  }

  .cta-container {
    margin-top: 20px;
  }
}

/* LARGE MOBILE / SMALL TABLET (769px–900px) */
@media (min-width: 769px) and (max-width: 900px) {
  #section2 .Product-content h1 {
    font-size: 22px;
  }

  #section2 .Productlogo img {
    width: 180px;
  }
}

/* ========================================
   RESPONSIVE - TABLET (769px-1024px)
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  #section2 .Product-content {
    padding: 30px 20px;
  }

  #section2 .Products-content-wrapper {
    height: 82vh;
  }

  #section2 .Product-content h1 {
    font-size: 22px;
  }
}

/* EXTRA SMALL HEIGHT DEVICES (≤600px height) */
@media (max-height: 600px) {
  #section2 .Productprinciples {
    max-height: 35vh;
  }

  #section2 .Productlogo img {
    width: 90px;
  }

  #section2 .Product-content h1 {
    font-size: 15px;
  }
}

/* LANDSCAPE PHONES (max-height: 500px) */
@media (max-height: 500px) and (orientation: landscape) {
  #section2 .slide-content.Product-content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    height: auto;
  }

  #section2 .Productlogo {
    width: 40%;
    margin: 0 auto 10px;
  }

  #section2 .Productprinciples {
    max-height: none;
  }

  #section2 .Principle p {
    font-size: 11px;
  }
}

/* ========================================
   SMALL HEIGHTS
   ======================================== */
@media (max-height: 700px) {
  #section2 .Products-content-wrapper {
    height: 90vh;
  }

  #section2 .Productprinciples {
    max-height: 40vh;
  }
}