/* ================================
   GLOBAL RESETS & SCROLL FIX
   ================================ */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
}

body {
  overflow-y: auto !important;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ================================
   COMMITMENT HERO SECTION
   ================================ */
.commitment-hero {
  background: #1a1a2e;
  padding: 8rem 6rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  max-width: 100%;
  margin: 0 0 0 0;
  min-height: 45vh;
}

.commitment-hero-left h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  margin-top: 4rem;
}

.commitment-hero-right {
  max-width: 600px;
}

.commitment-hero-right p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
  font-weight: 300;
  margin-top: 4rem;
}

/* ================================
   PILLARS SECTION
   ================================ */
.pillars-section {
  background: #f5f5f7;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 3rem) clamp(3rem, 6vw, 6rem);
}

.pillars-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 2.5rem);
}

/* Pillar Card - NAVY BACKGROUND */
.pillar-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(12px, 1.2vw, 16px);
  padding: clamp(2rem, 3vw, 3rem);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  min-height: clamp(280px, 30vh, 380px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* White fill overlay */
.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(to top, #ffffff 0%, #f8f8f8 100%);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.pillar-card:not(.expanded):hover::before {
  height: 100%;
}

.pillar-card.expanded::before {
  height: 100% !important;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.pillar-card > * {
  position: relative;
  z-index: 1;
}

/* Pillar Icon - Responsive */
.pillar-icon {
  font-size: clamp(2.25rem, 3vw, 3rem);
  margin-bottom: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1;
}

/* Title - Responsive */
.pillar-card h3 {
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 clamp(1rem, 1.5vw, 1.5rem) 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.3s ease 0.2s;
}

.pillar-card:not(.expanded):hover h3 {
  color: #1a1a2e;
}

.pillar-card.expanded h3 {
  color: #1a1a2e !important;
}

/* Content Container */
.pillar-content {
  flex: 1;
  overflow: hidden;
}

/* Preview paragraph - Responsive */
.content-preview p {
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 clamp(0.875rem, 1vw, 1.25rem) 0;
  font-weight: 400;
  transition: color 0.3s ease 0.2s;
}

.pillar-card:not(.expanded):hover .content-preview p {
  color: #4a4a4a;
}

.pillar-card.expanded .content-preview p {
  color: #4a4a4a !important;
}

/* Content Full */
.content-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.content-full p {
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 clamp(0.875rem, 1vw, 1.25rem) 0;
  font-weight: 400;
  transition: color 0.3s ease 0.2s;
}

.content-full p:last-child {
  margin-bottom: 0;
}

.content-full p.note {
  font-style: italic;
  color: #b0b0b0;
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  margin-top: clamp(1rem, 1.5vw, 1.5rem);
  padding-top: clamp(1rem, 1.5vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease 0.2s;
}

.pillar-card.expanded .content-full {
  max-height: 1000px !important;
}

.pillar-card.expanded .content-full p {
  color: #4a4a4a !important;
}

.pillar-card.expanded .content-full p.note {
  color: #666666 !important;
  border-top-color: rgba(0, 0, 0, 0.1) !important;
}

/* Read More Button - Responsive */
.read-more-btn {
  margin-top: clamp(1rem, 1.5vw, 1.5rem);
  padding: clamp(0.625rem, 0.75vw, 0.75rem) clamp(1.25rem, 1.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: clamp(6px, 0.8vw, 8px);
  font-size: clamp(0.875rem, 0.95vw, 0.95rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease 0.2s;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.5);
}

.pillar-card:not(.expanded):hover .read-more-btn {
  background: #1a1a2e;
  color: #ffffff;
  border-color: #1a1a2e;
}

.pillar-card:not(.expanded):hover .read-more-btn:hover {
  background: #2c2c3e;
  border-color: #2c2c3e;
}

.pillar-card.expanded .read-more-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.pillar-card.expanded:hover .read-more-btn {
  background: #4a4a4a;
  color: #ffffff;
  border-color: #4a4a4a;
}

.pillar-card.expanded .read-more-btn:hover {
  background: #5a5a5a;
  border-color: #5a5a5a;
}


/* ================================
   PILLAR MODAL OVERLAY
   ================================ */
.pillar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Pillar Modal */
.pillar-modal {
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  position: relative;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-overlay.active .pillar-modal {
  transform: scale(1) translateY(0);
}

/* Close Button */
.pillar-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(26, 26, 46, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a1a2e;
  transition: all 0.3s ease;
  z-index: 10;
}

.pillar-modal-close:hover {
  background: rgba(26, 26, 46, 0.2);
  transform: rotate(90deg);
}

/* Modal Header */
.pillar-modal-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(26, 26, 46, 0.1);
}

.pillar-modal-icon {
  font-size: 3rem;
  line-height: 1;
}

.pillar-modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Modal Content */
.pillar-modal-content {
  color: #4a4a4a;
}

.pillar-modal-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1.25rem 0;
  font-weight: 400;
}

.pillar-modal-content p:last-child {
  margin-bottom: 0;
}

.pillar-modal-content p.note {
  font-style: italic;
  color: #666666;
  font-size: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.1);
}

/* Scrollbar Styling */
.pillar-modal::-webkit-scrollbar {
  width: 8px;
}

.pillar-modal::-webkit-scrollbar-track {
  background: rgba(26, 26, 46, 0.05);
  border-radius: 10px;
}

.pillar-modal::-webkit-scrollbar-thumb {
  background: rgba(26, 26, 46, 0.2);
  border-radius: 10px;
}

.pillar-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(26, 26, 46, 0.3);
}

/* Animation */
@keyframes modalSlideUp {
  from {
    transform: scale(0.9) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .pillar-overlay {
    padding: 1rem;
  }
  
  .pillar-modal {
    max-height: 90vh;
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }
  
  .pillar-modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  
  .pillar-modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .pillar-modal-icon {
    font-size: 2.5rem;
  }
  
  .pillar-modal-title {
    font-size: 1.5rem;
  }
  
  .pillar-modal-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .pillar-modal {
    padding: 1.75rem 1.25rem;
  }
  
  .pillar-modal-title {
    font-size: 1.35rem;
  }
}

/* ================================
   COMMITMENT SUMMARY SECTION
   ================================ */
.commitment-summary {
  background: #1a1a2e;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 3vw, 4rem);
}

.summary-content {
  max-width: 1200px;
  margin: 0 auto;
}

.summary-content h2 {
  font-size: clamp(1.875rem, 2.5vw, 2.5rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 clamp(2rem, 3vw, 3rem) 0;
  text-align: center;
  letter-spacing: -0.01em;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.75rem, 1vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: clamp(10px, 1.2vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.item-icon {
  font-size: clamp(1.25rem, 1.5vw, 1.5rem);
  color: #4ecdc4;
  font-weight: 700;
  flex-shrink: 0;
  width: clamp(1.75rem, 2vw, 2rem);
  height: clamp(1.75rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(78, 205, 196, 0.15);
  border-radius: 50%;
}

.commitment-item p {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0;
  font-weight: 400;
}

.closing-statement {
  font-size: clamp(1.1rem, 1.25vw, 1.25rem);
  line-height: 1.8;
  color: #ffffff;
  text-align: center;
  margin: clamp(2rem, 3vw, 3rem) 0 0 0;
  font-weight: 500;
  font-style: italic;
  padding-top: clamp(2rem, 3vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================
   RESPONSIVE BREAKPOINTS
   ================================ */
/* ===== RESPONSIVE DESIGN ===== */

/* 5. LARGE SCREENS (1921px+) */
@media (min-width: 1921px) {
  .commitment-hero {
    padding: 10rem 8rem 3rem;
    gap: 5rem;
    min-height: 50vh;
  }

  .commitment-hero-left h1 {
    font-size: 4.5rem;
    margin-top: 5rem;
  }

  .commitment-hero-right {
    max-width: 750px;
  }

  .commitment-hero-right p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-top: 5rem;
  }

  .pillars-section {
    padding: 5rem 4rem 7rem;
  }

  .pillars-container {
    max-width: 1600px;
    gap: 3rem;
  }

  .pillar-card {
    padding: 3.5rem;
    min-height: 420px;
    border-radius: 20px;
  }

  .pillar-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }

  .pillar-card h3 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
  }

  .content-preview p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .content-full p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .content-full p.note {
    font-size: 1.1rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .read-more-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .pillar-modal {
    max-width: 1100px;
    padding: 4rem;
    border-radius: 20px;
  }

  .pillar-modal-close {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }

  .pillar-modal-icon {
    font-size: 3.5rem;
  }

  .pillar-modal-title {
    font-size: 2.5rem;
  }

  .pillar-modal-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .commitment-summary {
    padding: 7rem 5rem;
  }

  .summary-content h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
  }

  .commitment-list {
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }

  .commitment-item {
    padding: 2.5rem;
    border-radius: 14px;
    gap: 1.5rem;
  }

  .item-icon {
    font-size: 1.8rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .commitment-item p {
    font-size: 1.2rem;
  }

  .closing-statement {
    font-size: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 3.5rem;
  }
}

/* 2. STANDARD DESKTOP (1367px - 1920px) */
@media (min-width: 1367px) and (max-width: 1920px) {
  .commitment-hero {
    padding: 9rem 7rem 2.5rem;
    gap: 4.5rem;
    min-height: 48vh;
  }

  .commitment-hero-left h1 {
    font-size: 4rem;
    margin-top: 4.5rem;
  }

  .commitment-hero-right {
    max-width: 650px;
  }

  .commitment-hero-right p {
    font-size: 1.05rem;
    margin-top: 4.5rem;
  }

  .pillars-section {
    padding: 4.5rem 3.5rem 6.5rem;
  }

  .pillars-container {
    max-width: 1500px;
    gap: 2.5rem;
  }

  .pillar-card {
    padding: 3rem;
    min-height: 400px;
  }

  .pillar-icon {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
  }

  .pillar-card h3 {
    font-size: 2.1rem;
    margin-bottom: 1.8rem;
  }

  .content-preview p,
  .content-full p {
    font-size: 1.35rem;
  }

  .commitment-summary {
    padding: 6.5rem 4.5rem;
  }

  .summary-content h2 {
    font-size: 2.8rem;
  }

  .commitment-list {
    gap: 2.2rem;
  }

  .commitment-item {
    padding: 2.2rem;
  }

  .commitment-item p {
    font-size: 1.15rem;
  }
}

/* 1. LAPTOP / HALF SCREEN (1025px - 1366px) - FIXED */
@media (min-width: 1025px) and (max-width: 1366px) {
  .commitment-hero {
    padding: 8rem 6rem 2rem;
    gap: 4rem;
    min-height: 45vh;
  }

  .commitment-hero-left h1 {
    font-size: 3.5rem;
    margin-top: 4rem;
  }

  .commitment-hero-right {
    max-width: 600px;
  }

  .commitment-hero-right p {
    font-size: 0.95rem;
    margin-top: 4rem;
  }

  .pillars-section {
    padding: 4rem 3rem 6rem;
  }

  .pillars-container {
    max-width: 1400px;
    gap: 2rem;
  }

  .pillar-card {
    padding: 2.5rem;
    min-height: 350px;
  }

  .pillar-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .pillar-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
  }

  .content-preview p,
  .content-full p {
    font-size: 1.2rem;
  }

  .commitment-summary {
    padding: 5rem 3.5rem;
  }

  .summary-content h2 {
    font-size: 2.4rem;
  }

  .commitment-list {
    gap: 1.8rem;
  }

  .commitment-item {
    padding: 1.8rem;
  }

  .commitment-item p {
    font-size: 1.02rem;
  }
}

/* 3. TABLET (769px - 900px) */
@media (min-width: 769px) and (max-width: 900px) {
  .commitment-hero {
    padding: 7rem 4rem 2rem;
    flex-direction: column;
    gap: 2.5rem;
    min-height: 40vh;
  }

  .commitment-hero-left h1 {
    font-size: 3rem;
    margin-top: 2rem;
  }

  .commitment-hero-right {
    max-width: 100%;
  }

  .commitment-hero-right p {
    font-size: 0.95rem;
    margin-top: 0;
  }

  .pillars-section {
    padding: 3.5rem 3rem 5rem;
  }

  .pillars-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillar-card {
    padding: 2.2rem;
    min-height: 320px;
  }

  .pillar-icon {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
  }

  .pillar-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
  }

  .content-preview p,
  .content-full p {
    font-size: 1.15rem;
  }

  .read-more-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.92rem;
  }

  .pillar-modal {
    max-width: 95%;
    padding: 2.5rem;
  }

  .commitment-summary {
    padding: 4rem 3rem;
  }

  .summary-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .commitment-list {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .commitment-item {
    padding: 1.8rem;
  }

  .commitment-item p {
    font-size: 1rem;
  }

  .closing-statement {
    font-size: 1.15rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }
}

/* 4. MOBILE LAYOUT (< 768px) */
@media (max-width: 768px) {
  .commitment-hero {
    padding: 6rem 2rem 1.5rem;
    flex-direction: column;
    gap: 2rem;
    min-height: 35vh;
  }

  .commitment-hero-left h1 {
    font-size: 2.5rem;
    margin-top: 1.5rem;
  }

  .commitment-hero-right {
    max-width: 100%;
  }

  .commitment-hero-right p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 0;
  }

  .pillars-section {
    padding: 3rem 1.5rem 4rem;
  }

  .pillars-container {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .pillar-card {
    padding: 2rem;
    min-height: 280px;
    border-radius: 12px;
  }

  .pillar-card:hover {
    transform: translateY(-4px);
  }

  .pillar-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .content-preview p,
  .content-full p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .content-full p.note {
    font-size: 0.92rem;
    margin-top: 1.3rem;
    padding-top: 1.3rem;
  }

  .read-more-btn {
    margin-top: 1.2rem;
    padding: 0.65rem 1.3rem;
    font-size: 0.9rem;
    border-radius: 7px;
  }

  .pillar-overlay {
    padding: 1rem;
  }

  .pillar-modal {
    max-height: 90vh;
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .pillar-modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .pillar-modal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .pillar-modal-icon {
    font-size: 2.5rem;
  }

  .pillar-modal-title {
    font-size: 1.5rem;
  }

  .pillar-modal-content p {
    font-size: 0.95rem;
  }

  .commitment-summary {
    padding: 3.5rem 1.5rem;
  }

  .summary-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .commitment-list {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 2rem;
  }

  .commitment-item {
    padding: 1.6rem;
    border-radius: 10px;
    gap: 0.9rem;
  }

  .item-icon {
    font-size: 1.2rem;
    width: 1.8rem;
    height: 1.8rem;
  }

  .commitment-item p {
    font-size: 0.98rem;
  }

  .closing-statement {
    font-size: 1.12rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

/* 4.1 SMALL PHONES (< 480px) */
@media (max-width: 480px) {
  .commitment-hero {
    padding: 5rem 1.5rem 1rem;
    min-height: 30vh;
    gap: 1.5rem;
  }

  .commitment-hero-left h1 {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .commitment-hero-right p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .pillars-section {
    padding: 2.5rem 1.2rem 3.5rem;
  }

  .pillars-container {
    gap: 1.6rem;
  }

  .pillar-card {
    padding: 1.6rem;
    min-height: 260px;
    border-radius: 10px;
  }

  .pillar-icon {
    font-size: 2.1rem;
    margin-bottom: 0.9rem;
  }

  .pillar-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
  }

  .content-preview p,
  .content-full p {
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }

  .content-full p.note {
    font-size: 0.88rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
  }

  .read-more-btn {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.88rem;
    border-radius: 6px;
  }

  .pillar-modal {
    padding: 1.75rem 1.25rem;
  }

  .pillar-modal-title {
    font-size: 1.35rem;
  }

  .pillar-modal-icon {
    font-size: 2.2rem;
  }

  .pillar-modal-content p {
    font-size: 0.9rem;
  }

  .commitment-summary {
    padding: 3rem 1.2rem;
  }

  .summary-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }

  .commitment-list {
    gap: 1.3rem;
    margin-bottom: 1.8rem;
  }

  .commitment-item {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.4rem;
    border-radius: 8px;
  }

  .item-icon {
    font-size: 1.15rem;
    width: 1.7rem;
    height: 1.7rem;
    align-self: flex-start;
  }

  .commitment-item p {
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .closing-statement {
    font-size: 1.05rem;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    line-height: 1.7;
  }
}

