/* ==========================================================================
   Base Styles
   ========================================================================== */

/* Typography */
h1, h2 {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #43A047;
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

h1::after, h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 4px;
    background-color: #43A047;
}

/* New Section Heading Styles */
.section-title-container {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title-container::before,
.section-title-container::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background-color: #0F7E2C;
}

.section-title-container::before {
    margin-right: 30px;
}

.section-title-container::after {
    margin-left: 30px;
}

.section-title-container h2 {
    color: #0F7E2C;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    white-space: nowrap;
    padding: 0;
}

.section-title-container h2::before,
.section-title-container h2::after {
    display: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 1rem;
}

/* Section Base Styles */
section:not(.page-hero) {
    padding: 80px 20px 60px;
    max-width: 1100px;
    margin: auto;
}

/* Page Hero sections have their own specific styling */

/* Section Text Styles */
section p {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 300;
    text-align: justify;
    hyphens: auto;
}

/* Strong text styling */
section p strong {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.01em;
}

/* ==========================================================================
   Hero Section Styles
   ========================================================================== */
#hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    margin-top: 80px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1400px;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

#hero .hero-content {
    flex: 0 0 45%;
    max-width: 600px;
    padding-left: 2%;
    margin-left: 2%;
}

#hero .hero-image {
    flex: 0 0 45%;
    height: 550px;
    background: url('../img/delivery-hero.png') center/contain no-repeat;
    margin-left: 5%;
}

.hero-heading {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    letter-spacing: -0.02em;
}

.hero-heading::after {
    display: none;
}

#hero p {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.hero-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #43A047;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.2);
}

/* Hero Animations */
.slide-in-left {
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   Animation Styles
   ========================================================================== */
.fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s ease forwards;
}


    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease forwards;
      animation-delay: 0.4s;
    }


    .zoom-in {
      opacity: 0;
      transform: scale(0.8);
      animation: zoomIn 0.8s ease forwards;
      animation-delay: 0.8s;
    }    /* ==========================================================================
   Grid Layout Styles
   ========================================================================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}


    /* First row - 3 cards */
    .grid-container .card:nth-child(-n+3) {
      grid-row: 1;
    }


    /* Second row - 3 cards */
    .grid-container .card:nth-child(n+4) {
      grid-row: 2;
    }


    @media (max-width: 992px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }
      .grid-container .card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
      }
    }


    @media (max-width: 576px) {
      .grid-container {
        grid-template-columns: 1fr;
      }
    }


/* ==========================================================================
   Card Component Styles
   ========================================================================== */
.card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}


.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


.card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #e85d04;
}


.card h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}


.card p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-weight: 300;
  text-align: justify;
  hyphens: auto;
  margin-bottom: 1rem;
}


/* ==========================================================================
   Steps Section Styles
   ========================================================================== */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}


.step-box {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e85d04;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}


.step-content h3 {
  margin-top: 0;
  color: #d00000;
  
}


.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #444;
  
}


.onboarding-benefits {
  background-color: #fff3e0;
  border-left: 6px solid #e85d04;
  padding: 20px;
  margin: 40px auto 20px;
  max-width: 800px;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.6;
}


.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}


.step-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 30px 20px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


.step-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #43A047;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.step-card h3 {
  margin-top: 30px;
  color: #d00000;
   font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: 1.25rem;
      color: #333;
      margin: 15px 0 10px;
      letter-spacing: 0.01rem;
  
}


.step-card p {
  color: #444;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #444;
}


.onboarding-benefits {
  background-color: #fff3e0;
  border-left: 6px solid #e85d04;
  padding: 20px;
  margin: 40px auto 20px;
  max-width: 800px;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.6;
}



    #our-story {
      text-align: center;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    /* Our Story heading now uses the section-title-container styles for consistency */#our-story p {
      color: #333;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 20px;
      max-width: 1000px;
      margin-left: auto;
      margin-right: auto;
      text-align: justify;
    }


    .highlight-text {
      color: #0F7E2C;
      font-weight: 600;
    }


    #differentiator {
      text-align: center;
      padding: 60px 20px;
    }
    /* Differentiator heading now uses the section-title-container styles for consistency */#differentiator .card h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: 1.25rem;
      color: #333;
      margin: 15px 0 10px;
      letter-spacing: 0.01rem;
    }

    #differentiator .card p {
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      font-size: 0.875rem;
      line-height: 1.8;
      color: #333;
      margin-top: 10px;
      letter-spacing: 0.01rem;
    }

    /* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .grid-container .card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 576px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Differentiator Section Styles
   ========================================================================== */
#differentiator {
    text-align: center;
    padding: 60px 20px;
}

#differentiator h2 {
    color: #0F7E2C;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

#differentiator h2::before,
#differentiator h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background-color: #0F7E2C;
}

/* ==========================================================================
   Quick Start Section Styles
   ========================================================================== */
.quick-start-section {
    background: linear-gradient(135deg, #0F7E2C, #1aa83c);
    color: white;
    padding: 60px 20px;
    margin: 40px auto;
    border-radius: 30px;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(15, 126, 44, 0.2);
}

.quick-start-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.quick-start-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.quick-start-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.quick-start-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.quick-start-section h2::before,
.quick-start-section h2::after {
    display: none;
}

.quick-start-section p {
    font-family: "Inter", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: 0.01em;
}

.quick-start-section .highlight {
    color: #ffeb3b;
    font-weight: bold;
    font-size: 1.4rem;
}

 .benefits-container {
      background: linear-gradient(135deg, rgba(15, 126, 44, 0.05), rgba(15, 126, 44, 0.1));
      border-radius: 20px;
      padding: 40px;
      margin: 40px auto;
      max-width: 800px;
      box-shadow: 0 10px 30px rgba(15, 126, 44, 0.1);
    }


    .benefits-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }


    .benefit-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.1rem;
      color: #333;
    }


    .benefit-icon {
      width: 28px;
      height: 28px;
      background-color: #0F7E2C;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }


    .benefits-footer {
      text-align: center;
      border-top: 2px dashed rgba(15, 126, 44, 0.2);
      padding-top: 25px;
      margin-top: 10px;
    }


    .benefits-footer p {
      color: #0F7E2C;
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0;
    }

    .cta-section {
  background: linear-gradient(135deg, #0F7E2C, #1aa83c);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
  border-radius: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(15, 126, 44, 0.2);
}


.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}


.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.cta-section h2::after {
  display: none;
}


.cta-section p {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: white;
  margin: 0 auto 35px;
  line-height: 1.6;
  max-width: 700px;
  letter-spacing: 0.01em;
  position: relative;
}


.cta-btn {
  background-color: #fff;
  color: #0F7E2C;
  font-weight: bold;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}


.cta-btn:hover {
  background-color: #0F7E2C;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transform: translateY(-2px);
  border: 2px solid #fff;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   Override Styles
   ========================================================================== */
.cta-section .section-title-container::before,
.cta-section .section-title-container::after {
  display: none;
}

.cta-section .section-title-container h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.cta-section .section-title-container {
  margin-bottom: 5px;
}

 body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      scroll-behavior: smooth;
      overflow-x: hidden;
      width: 100%;
    }    /* Header styles moved to headerfooter.css */

    nav .logo img {
      height: 40px;
    }

    nav .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #43A047;
    }

    nav a i {
      font-size: 1.1rem;
    }

    section {
      padding: 120px 0 60px;
      width: 100%;    }

    /* Footer styles moved to headerfooter.css */

    /* About Page Specific Styles */
    /* Now using the global .page-hero class for consistent styling across pages */

    .about-section {
      background: white;
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .about-section h2 {
      color: #0F7E2C;
      font-size: 2rem;
      margin-bottom: 20px;
    }    .about-section p {
      font-family: "Montserrat", sans-serif;
      color: #555;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
      font-weight: 300;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 30px;
    }

    .value-card {
      background: #f8f9fa;
      padding: 25px;
      border-radius: 8px;
      border-left: 4px solid #0F7E2C;
    }

    .value-card h3 {
      color: #0F7E2C;
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 1.4rem;
    }

    .value-card p {
      margin: 0;
      font-size: 1.05rem;
    }

    .about-content {
      background: #f8f9fa;
      padding: 40px 0 60px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      color: #0F7E2C;
      font-size: 2.5rem;
      position: relative;
      display: inline-block;
      margin: 0;

    white-space: nowrap;
    padding: 0;
    }

    .section-title h2::before,
    .section-title h2::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 100px;
      height: 2px;
      background-color: #0F7E2C;
    }

    .section-title h2::before {
      right: calc(100% + 20px);
    }

    .section-title h2::after {
      left: calc(100% + 20px);
    }

    .mission-section {
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 40px;
      overflow: hidden;
    }

    .mission-content {
      flex: 0 0 60%;
      padding-right: 0;
    }

    .mission-image {
      flex: 0 0 calc(40% - 40px);
      height: 100%;
      min-height: 300px;
      position: relative;
      background: linear-gradient(135deg, rgba(15, 126, 44, 0.05), rgba(15, 126, 44, 0.1));
      border-radius: 8px;
      overflow: hidden;
      margin-right: 40px;
    }

    .mission-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }    .mission-title {
      font-family: "Bai Jamjuree", sans-serif;
      font-size: 3.5rem !important;
      font-weight: 700;
      color: #0F7E2C !important;
      margin-bottom: 30px !important;
      letter-spacing: -0.5px;
    }

    .vision-section {
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 40px;
      overflow: hidden;
      justify-content: space-between;
    }

    .vision-content {
      flex: 0 0 55%;
      padding-left: 0;
      padding-right: 20px;
    }

    .vision-image {
      flex: 0 0 40%;
      height: 100%;
      min-height: 300px;
      position: relative;
      background: linear-gradient(135deg, rgba(15, 126, 44, 0.05), rgba(15, 126, 44, 0.1));
      border-radius: 8px;
      overflow: hidden;
      margin: 0;
    }

    .vision-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: auto;
    }

    /* First row - 3 cards */
    .grid-container .card:nth-child(-n+3) {
      grid-row: 1;
    }

    /* Second row - 3 cards */
    .grid-container .card:nth-child(n+4) {
      grid-row: 2;
    }

    .card {
      background: #fff;
      border: 1px solid #eee;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      border-radius: 16px;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .card .icon {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      color: #0F7E2C;
    }    .card h3 {
      font-family: "Inter", sans-serif;
      margin-top: 0;
      color: #0F7E2C;
      font-size: 1.3rem;
      font-weight: 500;
    }    .card p {
      font-family: "Montserrat", sans-serif;
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 0;
      text-align: justify;
    }

    .quick-start-section {
      background: linear-gradient(135deg, #0F7E2C, #1aa83c);
      color: white;
      padding: 60px 20px;
      margin: 40px auto;
      border-radius: 30px;
      max-width: 1000px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(15, 126, 44, 0.2);
    }

    .quick-start-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
      opacity: 0.3;
      z-index: 1;
    }

    .quick-start-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .quick-start-icon {
      font-size: 4rem;
      margin-bottom: 20px;
      animation: bounce 2s infinite;
    }    .quick-start-section h2 {
      font-family: "Bai Jamjuree", sans-serif;
      color: white !important;
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
      font-weight: 600;
    }

    .quick-start-section p {
      font-size: 1.3rem;
      margin: 0;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
    }

    .quick-start-section .highlight {
      color: #ffeb3b;
      font-weight: bold;
      font-size: 1.4rem;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 40px auto;
    }

    .step-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 16px;
      padding: 30px 20px 20px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .step-badge {
      position: absolute;
      top: -20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #0F7E2C;
      color: white;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }    .step-card h3 {
      font-family: "Inter", sans-serif;
      font-weight: 500;
      margin-top: 30px;
      color: #0F7E2C;
      font-size: 1.4rem;
    }

    .benefits-container {
      background: linear-gradient(135deg, rgba(15, 126, 44, 0.05), rgba(15, 126, 44, 0.1));
      border-radius: 20px;
      padding: 40px;
      margin: 40px auto;
      max-width: 800px;
      box-shadow: 0 10px 30px rgba(15, 126, 44, 0.1);
    }

    .benefits-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 1.1rem;
      color: #333;
    }

    .benefit-icon {
      width: 28px;
      height: 28px;
      background-color: #0F7E2C;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .benefits-footer {
      text-align: center;
      border-top: 2px dashed rgba(15, 126, 44, 0.2);
      padding-top: 25px;
      margin-top: 10px;
    }

    .benefits-footer p {
      color: #0F7E2C;
      font-size: 1.2rem;
      font-weight: 600;
      margin: 0;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @media (max-width: 992px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
      }
      .grid-container .card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding-left: 20px;
        padding-right: 20px;
      }
      
      .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .grid-container {
        grid-template-columns: 1fr;
      }
      
      nav {
        flex-direction: column;
      }
      
      nav a {
        margin: 0.5rem 0;
      }

      .values-grid {
        grid-template-columns: 1fr;
      }      /* Hero section now uses global .page-hero class */

      .section-title h2::before,
      .section-title h2::after {
        width: 50px;
      }

      .mission-section {
        flex-direction: column;
        padding: 0;
      }

      .mission-content {
        flex: 0 0 100%;
        padding: 0;
      }

      .mission-image {
        flex: 0 0 250px;
        width: 100%;
        min-height: 250px;
        order: -1;
        margin: 30px;
        margin-bottom: 0;
      }

      .vision-section {
        flex-direction: column;
        padding: 0;
      }

      .vision-content {
        flex: 0 0 100%;
        padding: 30px;
      }

      .vision-image {
        flex: 0 0 250px;
        width: 100%;
        min-height: 250px;
        order: -1;
        padding: 20px;
      }
    }

.mission-content p, .vision-content p {
      font-family: "Montserrat", sans-serif;
      color: #555;
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
      font-weight: 300;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      scroll-behavior: smooth;
      overflow-x: hidden;
      width: 100%;
    }    .container {
      max-width: 1100px;
      margin: 0 auto;
      width: 100%;
      padding-left: 40px;
      padding-right: 40px;
      box-sizing: border-box;
    }

    header {
      background: #fff;
      box-shadow: 0 15px 40px -20px rgba(40, 44, 63, .15);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }    /* Header styles moved to headerfooter.css */section {
      padding: 120px 0 60px;
      width: 100%;
    }    /* Footer styles moved to headerfooter.css */

    /* Team Page Specific Styles */
    /* Now using the global .page-hero class for consistent styling across pages */
    
    .team-container {
      background: #f8f9fa;
      padding: 40px 0 60px;
    }/* Team Member Styles */    .team-container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0;
    }.team-member {
      margin-bottom: 50px;
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 25px rgba(15, 126, 44, 0.1);
    }.member-header {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      gap: 40px;
    }    .member-image-container {
      flex-shrink: 0;
      width: 100px;
      height: 100px;
      position: relative;
      transform: rotate(45deg);
      overflow: hidden;
      border: 2px solid #0F7E2C;
      margin-left: 20px;
      box-sizing: border-box;
      background-color: white;
      padding: 4px;
    }

    .member-image-inner {
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .member-image {
      width: 140px;
      height: 140px;
      object-fit: cover;
      transform: rotate(-45deg);
      position: absolute;
      top: -24px;
      left: -24px;
    }

    .member-info {
      flex-grow: 1;
    }

    .member-name {
      color: #0F7E2C;
      font-size: 2.8rem;
      margin: 0 0 10px 0;
      font-weight: bold;
      line-height: 1.2;
    }

    .member-position {
      color: #333;
      font-size: 1.2rem;
      font-weight: 500;
    }

    .member-content {
      width: 100%;
    }    .member-bio {
      color: #555;
      font-size: 1.1rem;
      line-height: 1.8;
      text-align: justify;
      margin: 0 0 15px 0;
    }

    .member-bio:last-child {
      margin-bottom: 0;
    }@media (max-width: 768px) {
      .member-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
      }

      .member-content {
        text-align: center;
      }

      .member-bio {
        text-align: center;
      }

      .member-name {
        font-size: 2.2rem;
      }      .team-container,
      section {
        padding-left: 20px;
        padding-right: 20px;
      }
    }

    .social-links a {
      color: #0F7E2C;
      text-decoration: none;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    .social-links a:hover {
      color: #1aa83c;
    }

    @media (max-width: 992px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }    @media (max-width: 768px) {
      .container {
        padding-left: 20px;
        padding-right: 20px;
      }
      
   
  

      .member-header {
        gap: 20px;
      }
    }

    @media (max-width: 576px) {
      .team-grid {
        grid-template-columns: 1fr;
      }      /* Hero styling now handled by global .page-hero class */
    }

    /* ==========================================================================
   Global Hero Styles
   ========================================================================== */
.page-hero {
  text-align: center;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, rgba(15, 126, 44, 0.05), rgba(15, 126, 44, 0.1));
  margin-bottom: 40px;
  width: 100%;
  max-width: none; /* Override the section max-width */
}

.page-hero h1 {
  color: #0F7E2C;
  font-size: 2.5rem;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.page-hero h1::before,
.page-hero h1::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100px;
  height: 2px;
  background-color: #0F7E2C;
}

.page-hero h1::before {
  right: calc(100% + 20px);
}

.page-hero h1::after {
  left: calc(100% + 20px);
}

.page-hero p {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-weight: 400;
}

/* Media Query for Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }
  
  .page-hero h1::before,
  .page-hero h1::after {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-hero p {
    font-size: 1rem;
  }
  
  .page-hero h1::before,
  .page-hero h1::after {
    display: none;
  }
}

/* Specific page hero styles can override global styles as needed */