/* ============================================= */
/* --- About Page Hero Section --- */
/* ============================================= */
.about-hero {
    position: relative;
    background-color: #06301B; /* Pine green background */
    color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
    padding: 2rem 1rem;
}

.about-hero-title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: clamp(1.5rem, 5vw, 2.75rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.3;
}

.about-hero-plant {
    position: absolute;
    z-index: 1;
    width: 90px;
    opacity: 0.15;
    pointer-events: none;
}

.about-hero-plant.left {
    top: -15px;
    left: -25px;
    transform: rotate(-45deg);
}

.about-hero-plant.right {
    bottom: -15px;
    right: -25px;
    transform: rotate(45deg);
}


/* ============================================= */
/* --- About Page Introduction Article --- */
/* ============================================= */
.about-intro {
    max-width: 900px;
    margin: auto;
    padding: 2rem;
    text-align: center;
}

.about-intro p {
    font-size: clamp(1rem, 2.5vw, 1.1rem); /* Responsive font size */
    line-height: 1.8;
    color: var(--para-text);
}

/* ============================================= */
/* --- About Page Zig-Zag Info Section --- */
/* ============================================= */
.about-info-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}

.about-info-block {
  display: flex;
  /* Mobile First: Stack icon on top of text */
  flex-direction: column; 
  align-items: center; /* Center items for mobile view */
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shaow);
  margin-bottom: 3rem;
  padding: 2rem;
  text-align: center; /* Center text for mobile view */
}

.about-icon-wrapper {
  color: var(--button-color);
  font-size: clamp(3.5rem, 8vw, 5rem); /* Large, responsive icon */
  margin-bottom: 1.5rem;
}

.about-text-wrapper h3 {
  font-size: clamp(1.75rem, 5vw, 2.25rem); /* Responsive title */
  margin-bottom: 1rem;
  color: #333;
}

.about-text-wrapper p {
  color: var(--para-text);
  line-height: 1.7;
  font-size: clamp(1rem, 2.5vw, 1.1rem); /* Responsive paragraph */
}

/* ============================================= */
/* --- Desktop & Tablet Styles --- */
/* ============================================= */
@media (min-width: 768px) {
    .about-hero {
        min-height: 160px;
    }

    .about-hero-plant {
        width: 160px;
    }
    
    .about-hero-plant.left {
        top: -30px;
        left: -40px;
    }

    .about-hero-plant.right {
        bottom: -30px;
        right: -40px;
    }

    .about-intro {
        padding: 3rem;
    }

    /* --- Zig-Zag Layout for Desktop --- */
    .about-info-block {
        flex-direction: row; /* Side-by-side layout */
        text-align: left; /* Align text to the left */
        padding: 3rem;
        gap: 3rem; /* Space between icon and text */
    }

    .about-icon-wrapper {
        margin-bottom: 0; /* Remove bottom margin on desktop */
        flex-basis: 150px; /* Give the icon a consistent space */
        flex-shrink: 0;
    }
    
    .about-text-wrapper {
        flex: 1; /* Allow text to take remaining space */
    }

    /* This class reverses the order for the zig-zag effect */
    .about-info-block.reverse-layout {
        flex-direction: row-reverse;
    }
}
