/* Switzer font family */
@font-face {
  font-family: "Switzer";
  src:
    url("../fonts/Switzer/Switzer-Thin.woff2") format("woff2"),
    url("../fonts/Switzer/Switzer-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Switzer";
  src:
    url("../fonts/Switzer/Switzer-Light.woff2") format("woff2"),
    url("../fonts/Switzer/Switzer-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Switzer";
  src:
    url("../fonts/Switzer/Switzer-Regular.woff2") format("woff2"),
    url("../fonts/Switzer/Switzer-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Switzer";
  src:
    url("../fonts/Switzer/Switzer-Medium.woff2") format("woff2"),
    url("../fonts/Switzer/Switzer-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Switzer";
  src:
    url("../fonts/Switzer/Switzer-Semibold.woff2") format("woff2"),
    url("../fonts/Switzer/Switzer-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Switzer";
  src:
    url("../fonts/Switzer/Switzer-Bold.woff2") format("woff2"),
    url("../fonts/Switzer/Switzer-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Switzer";
  src:
    url("../fonts/Switzer/Switzer-Black.woff2") format("woff2"),
    url("../fonts/Switzer/Switzer-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

body {
  font-family: "Switzer", sans-serif;
}

/* ========================================
   KEMPS CREEK PAGE STYLES
   ======================================== */

/* Header */
.kemps-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}

.kemps-header-container {
  margin: 0 112px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.kemps-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.kemps-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #202020;
  color: #fff;
  width: 110px;
  height: 40px;
  padding: 8px 24px;
  border-radius: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: background 0.2s;
}

.kemps-contact-btn:hover {
  background: #1a1a1a;
}

/* Hero Section */
.kemps-hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.kemps-hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.kemps-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kemps-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(200, 160, 90, 0.65) 0%,
    rgba(180, 140, 80, 0.5) 50%,
    rgba(160, 120, 60, 0.4) 100%
  );
}

.kemps-hero-slide-content {
  position: relative;
  z-index: 10;
  padding: 0 112px;
  max-width: 100%;
}

.kemps-hero-slide-content h1 {
  font-family: 'Noto Serif', serif;
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 135%;
  letter-spacing: 0%;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.kemps-hero-slide-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 150%;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .kemps-hero-slide-content h1 {
    font-size: 36px;
  }
  .kemps-hero-slide-content p {
    font-size: 16px;
  }

  .kemps-faq-content h3,
  .kemps-infrastructure-section h3,
  .kemps-yellow-content h3,
  .kemps-feedback-content h3 {
    font-size: 28px;
    line-height: 130%;
  }

  .kemps-map-section h3 {
    font-size: 22px;
    line-height: 130%;
  }

  .kemps-faq-content p,
  .kemps-infrastructure-section p,
  .kemps-infrastructure-section li,
  .kemps-yellow-content p,
  .kemps-yellow-content li,
  .kemps-feedback-content p {
    font-size: 16px;
    line-height: 150%;
    max-width: 680px;
  }

  .kemps-detail-label {
    font-size: 12px;
  }

  .kemps-detail-value,
  .kemps-footer-content p {
    font-size: 14px;
    line-height: 150%;
  }

  .kemps-footer-content h4 {
    font-size: 20px;
  }

  .kemps-hero-slide-content {
    padding: 0 24px;
  }
}

/* Container */
.kemps-container {
  margin: 0 112px;
}

/* Content Section */
.kemps-content-section {
  background: #E8DFD6;
  padding: 60px 0 80px;
}

.kemps-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .kemps-content-grid {
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
  }
}

/* Left Column */
.kemps-left-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Section Image */
.kemps-section-image {
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.kemps-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Project Details */
.kemps-project-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kemps-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kemps-detail-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2c2c2c;
  line-height: 1.4;
}

.kemps-detail-value {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5a5a50;
  line-height: 1.5;
}

/* Main Content */
.kemps-main-content h3 {
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 150%;
  letter-spacing: 0;
  margin-top: 40px;
  margin-bottom: 20px;
}

.kemps-main-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  color: #5a5a50;
  margin-bottom: 20px;
}

.kemps-main-content ul {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.kemps-main-content li {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  color: #5a5a50;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .kemps-main-content h3 {
    font-size: 30px;
  }
  .kemps-main-content p,
  .kemps-main-content li {
    font-size: 20px;
  }
}

/* Map Section */
.kemps-map-section {
  background: #E8DFD6;
  padding: 0 0 48px;
}

.kemps-map-section h3 {
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 150%;
  margin-bottom: 20px;
}

.kemps-map-wrapper {
  position: relative;
}

.kemps-sitemap-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .kemps-map-section {
    padding: 0 0 80px;
  }
  .kemps-map-section h3 {
    font-size: 24px;
  }
}

/* FAQ Section */
.kemps-faq-section {
  background: #E8DFD6;
  padding: 48px 0;
}

.kemps-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .kemps-faq-section {
    padding: 64px 0;
  }
  .kemps-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.kemps-faq-content h3 {
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 150%;
  margin-bottom: 12px;
}

.kemps-faq-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #5a5a50;
  margin-bottom: 20px;
}

.kemps-faq-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin-left: auto;
  object-fit: contain;
}

.kemps-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2c2c2c;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 200%;
    text-align: center;
    text-decoration: none;
    width: 230px;
    height: 42px;
    justify-content: center;
    transition: background 0.2s;
    margin-bottom: 15px;
}

.kemps-btn-download .material-symbols-outlined {
  font-size: 18px;
}

.kemps-btn-download:hover {
  background: #1a1a1a;
}

/* Infrastructure Section */
.kemps-infrastructure-section {
  background: #6D6E5E;
  padding: 64px 0;
  min-height: auto;
  margin-bottom: 90px;
}

.kemps-infrastructure-section .kemps-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kemps-infrastructure-section h3 {
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  line-height: 150%;
  margin-bottom: 8px;
}

.kemps-infrastructure-section p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.kemps-infrastructure-section strong {
  font-weight: 700;
  color: #fff;
}

.kemps-infrastructure-section ul {
  margin: 0;
  padding-left: 24px;
  list-style-type: disc;
}

.kemps-infrastructure-section li {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .kemps-infrastructure-section h3 {
    font-size: 24px;
  }
  .kemps-infrastructure-section p,
  .kemps-infrastructure-section li {
    font-size: 16px;
  }
}

/* Yellow Section */
.kemps-yellow-section {
  background: #E1E75B;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.kemps-yellow-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.kemps-yellow-wide {
  max-width: 1020px;
}

.kemps-yellow-narrow {
  max-width: 800px;
  margin-top: 32px;
}

.kemps-yellow-content h3 {
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 150%;
  margin-bottom: 8px;
  margin-top: 24px;
}

.kemps-yellow-content h3:first-child {
  margin-top: 0;
}

.kemps-yellow-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #2c2c2c;
  margin-bottom: 0;
}

.kemps-yellow-content ul {
  margin: 0;
  padding-left: 24px;
  list-style-type: disc;
}

.kemps-yellow-content li {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.kemps-corner-img {
  position: absolute;
  bottom: 0;
  right: -25px;
  width: 620px;
  height: 565px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .kemps-corner-img {
    width: 350px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .kemps-yellow-section {
    padding: 60px 0 160px;
  }
  .kemps-yellow-content h3 {
    font-size: 24px;
  }
  .kemps-yellow-content p,
  .kemps-yellow-content li {
    font-size: 16px;
  }
  .kemps-corner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: auto;
  }
}

/* Feedback Section */
.kemps-feedback-section {
  background: #fff;
  padding: 80px 0;
}

.kemps-feedback-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .kemps-feedback-grid {
    grid-template-columns: 500px 1fr;
    gap: 64px;
  }

  .kemps-feedback-form {
    margin-left: auto;
  }
}

.kemps-feedback-content h3 {
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  font-weight: 500;
  color: #282828;
  line-height: 150%;
  margin-bottom: 16px;
}

.kemps-feedback-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: #6D6E5E;
}

.kemps-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.kemps-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.kemps-form-input,
.kemps-form-textarea {
  background: #fff;
  border: 0.75px solid #BFBFBF;
  border-radius: 9px;
  padding: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #2c2c2c;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kemps-input-half {
  width: 100%;
  height: 42px;
}

.kemps-input-full {
  width: 100%;
  height: 42px;
}

.kemps-form-input:-webkit-autofill,
.kemps-form-input:-webkit-autofill:hover,
.kemps-form-input:-webkit-autofill:focus,
.kemps-form-input:-webkit-autofill:active,
.kemps-phone-input:-webkit-autofill,
.kemps-phone-input:-webkit-autofill:hover,
.kemps-phone-input:-webkit-autofill:focus,
.kemps-phone-input:-webkit-autofill:active,
.kemps-country-code-input:-webkit-autofill,
.kemps-country-code-input:-webkit-autofill:hover,
.kemps-country-code-input:-webkit-autofill:focus,
.kemps-country-code-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #2c2c2c !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  background-color: #ffffff !important;
}

.kemps-form-textarea {
  width: 100%;
  height: 150px;
  resize: vertical;
}

.kemps-submit-btn {
  background: #E1E75B;
  color: #282828;
  border: none;
  border-radius: 74999px;
  padding: 15px;
  width: 100%;
  height: 36px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, transform 0.1s;
}

.kemps-submit-btn .material-symbols-outlined {
  font-size: 18px;
}

.kemps-submit-btn:hover {
  background: #d4da4e;
}

.kemps-submit-btn:active {
  transform: scale(0.98);
}

/* Phone input with country selector */
.kemps-phone-wrapper {
  display: flex;
  align-items: center;
  background: #fff;
  border: 0.75px solid #BFBFBF;
  border-radius: 9px;
  height: 42px;
  position: relative;
  overflow: visible;
  z-index: 5;
}

.kemps-country-selector {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 6px;
  height: 100%;
  cursor: pointer;
  flex-shrink: 0;
}

.kemps-flag-icon {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.kemps-country-arrow {
  font-size: 8px;
  color: #666;
}

.kemps-country-code-input {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #2c2c2c;
  border: none;
  border-right: 0.75px solid #BFBFBF;
  background: transparent;
  width: 44px;
  flex: 0 0 44px;
  padding: 0 4px;
  margin-right: 4px;
  outline: none;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
}

.kemps-country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #BFBFBF;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-height: 250px;
  overflow-y: auto;
  z-index: 10000;
  min-width: 220px;
}

.kemps-country-dropdown.active {
  display: block !important;
}

.kemps-country-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  transition: background 0.2s;
}

.kemps-country-option:hover {
  background: #f5f5f5;
}

.kemps-country-option img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.kemps-country-option .dial-code {
  margin-left: auto;
  color: #666;
}

.kemps-phone-input {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  outline: none;
  padding: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #2c2c2c;
  background: transparent;
  box-sizing: border-box;
}

.kemps-phone-input::placeholder {
  color: #8a8176;
}

.kemps-phone-wrapper:focus-within {
  border-color: #6D6E5E;
  box-shadow: 0 0 0 2px rgba(109, 110, 94, 0.2);
}

.kemps-form-input:focus,
.kemps-form-textarea:focus {
  outline: none;
  border-color: #6D6E5E;
  box-shadow: 0 0 0 2px rgba(109, 110, 94, 0.2);
}

.kemps-form-input::placeholder,
.kemps-form-textarea::placeholder {
  color: #8a8176;
}

/* Footer */
.kemps-footer {
  background: #C49A6C;
  padding: 45px 0;
  text-align: center;
  overflow-x: hidden;
}

.kemps-footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.kemps-footer-content::after {
  content: '';
  display: block;
  width: 100vw;
  height: 1px;
  background: #EBEBEB;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 30px;
}

.kemps-footer-content h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #fff;
  margin-bottom: 16px;
}

.kemps-footer-content p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.4px;
  color: #fff;
}

.kemps-footer-bottom {
  padding-top: 20px;
}

.kemps-footer-bottom p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
ul.bulets {
    list-style: disc;
}
/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (min-width: 1400px) {
  .kemps-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .kemps-container {
    margin: 0 60px;
  }

  .kemps-yellow-narrow {
    padding-right: 260px;
  }

  .kemps-hero-slide-content {
    padding: 0 60px;
  }

  .kemps-hero-slide-content h1 {
    font-size: 48px;
  }

  .kemps-hero-slide-content p {
    font-size: 20px;
  }

  .kemps-section-image {
    width: 300px;
    height: 300px;
  }

  .kemps-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .kemps-feedback-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kemps-feedback-form {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .kemps-form-input,
  .kemps-form-textarea,
  .kemps-submit-btn,
  .kemps-form-input.kemps-input-half,
  .kemps-form-input.kemps-input-full,
  .kemps-phone-wrapper.kemps-input-half {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .kemps-header {
    padding: 12px 0;
  }

  .kemps-container,
  .kemps-header-container,
  .kemps-footer-content,
  .kemps-yellow-content {
    margin: 0 24px;
    padding: 0;
  }

  .kemps-hero-slide-content {
    padding: 0 24px;
  }

  .kemps-logo img {
    height: 28px;
    width: auto;
  }

  .kemps-contact-btn {
    height: 36px;
    padding: 6px 16px;
    font-size: 13px;
    line-height: 1;
  }

  .kemps-hero-section {
    height: 100vh;
    min-height: 500px;
  }

  .kemps-hero-slide-content h1 {
    font-size: 32px;
    line-height: 125%;
  }

  .kemps-hero-slide-content p {
    font-size: 15px;
  }

  .kemps-content-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .kemps-left-col {
    order: 1;
  }

  .kemps-faq-grid {
    grid-template-columns: 1fr !important;
  }

  .kemps-faq-image img {
    max-width: 100%;
    margin: 0 auto;
  }

  .kemps-feedback-grid {
    grid-template-columns: 1fr;
  }

  .kemps-feedback-form {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
  }

  .kemps-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
  }

  .kemps-form-input,
  .kemps-form-textarea,
  .kemps-submit-btn,
  .kemps-form-input.kemps-input-half,
  .kemps-form-input.kemps-input-full,
  .kemps-phone-wrapper.kemps-input-half {
    width: 100% !important;
  }

  .kemps-map-section h3,
  .kemps-faq-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .kemps-header {
    padding: 10px 0;
  }
  .kemps-container,
  .kemps-header-container,
  .kemps-footer-content,
  .kemps-yellow-content {
    margin: 0 16px;
    padding: 0;
  }

  .kemps-hero-slide-content {
    padding: 0 16px;
  }

  .kemps-contact-btn {
    height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .kemps-hero-section {
    height: 100vh;
    min-height: 400px;
  }

  .kemps-hero-slide-content h1 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .kemps-hero-slide-content p {
    font-size: 14px;
  }

  .kemps-faq-content h3,
  .kemps-infrastructure-section h3,
  .kemps-yellow-content h3,
  .kemps-feedback-content h3 {
    font-size: 24px;
    line-height: 130%;
  }

  .kemps-map-section h3 {
    font-size: 20px;
    line-height: 130%;
  }

  .kemps-faq-content p,
  .kemps-infrastructure-section p,
  .kemps-infrastructure-section li,
  .kemps-yellow-content p,
  .kemps-yellow-content li,
  .kemps-feedback-content p {
    font-size: 14px;
    line-height: 150%;
    max-width: 100%;
  }

  .kemps-detail-label {
    font-size: 11px;
  }

  .kemps-detail-value,
  .kemps-footer-content p {
    font-size: 12px;
    line-height: 150%;
  }

  .kemps-footer-content h4 {
    font-size: 18px;
  }

  .kemps-content-section {
    padding: 40px 0 60px;
  }

  .kemps-section-image {
    width: 100%;
    height: auto;
  }

  .kemps-section-image img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .kemps-map-section {
    padding: 0 0 32px;
  }

  .kemps-faq-section {
    padding: 32px 0;
  }

  .kemps-feedback-section {
    padding: 32px 0;
  }

  .kemps-yellow-section {
    padding-bottom: 200px;
  }

  .kemps-feedback-form {
    padding: 20px;
    gap: 12px;
  }

  .kemps-form-row {
    grid-template-columns: 1fr;
  }

  .kemps-form-input,
  .kemps-form-textarea {
    padding: 12px;
    font-size: 14px;
  }

  .kemps-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .kemps-footer {
    padding: 30px 0;
  }

  .kemps-footer-content h4 {
    font-size: 18px;
  }

  .kemps-footer-content p {
    font-size: 13px;
  }
}
