/* ----------------------------------------------------------
   HERO (matches About Page)
---------------------------------------------------------- */
.about-hero {
    position: relative;
    width: 100%;
    padding: 160px 20px 120px;
    text-align: center;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-text {
    font-size: 2.4rem;
    line-height: 1.3;
    color: #EDE9E2;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.about-hero-bold {
    font-weight: 700;
    color: #CBA86E;
}

.about-hero-subtext {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #EDE9E2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}


/* ----------------------------------------------------------
   FIX LEFT COLUMN ALIGNMENT FOR LEGAL HUB
---------------------------------------------------------- */

/* Center the entire block */
.about-mission,
.about-values {
    display: flex;
    justify-content: center;   /* centers the whole layout */
    align-items: flex-start;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;            /* centers the container */
}

/* Left column: fixed width so it doesn't drift left */
.mission-left,
.values-left {
    flex: 0 0 260px;           /* fixed width */
    text-align: left;
}

/* Right column: readable width */
.mission-right,
.values-right {
    flex: 1;
    max-width: 700px;
}

/* Labels */
.mission-label,
.values-label {
    font-size: 2rem;
    font-weight: 700;
    color: #CBA86E;
    margin: 0;
    white-space: nowrap;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.mission-text, 
.values-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #EDE9E2;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

/* Responsive */
@media (max-width: 900px) {
    .about-mission,
    .about-values {
        flex-direction: column;
        text-align: center;
    }

    .mission-left,
    .values-left,
    .mission-right,
    .values-right {
        flex: 1 1 100%;
        max-width: none;
        text-align: center;
    }

    .mission-label,
    .values-label {
        white-space: normal;
    }
}

.values-list li {
    position: relative;
    padding-bottom: 22px;
    margin-bottom: 28px;
}

.values-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

/* ----------------------------------------------------------
   CONTACT BLOCK
---------------------------------------------------------- */
.about-contact {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 10px;
}

.contact-label {
    font-size: 2rem;
    font-weight: 700;
    color: #CBA86E;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}

.contact-text {
    font-size: 1.25rem;
    color: #EDE9E2;
    line-height: 1.7;
    margin-bottom: 25px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.55);
}


/* ----------------------------------------------------------
   BUTTONS (matches About Page)
---------------------------------------------------------- */
.contact-button,
.join-button {
    background: linear-gradient(145deg, #FFB347, #FF8C00);
    color: #0D0D0F;
    padding: 10px 22px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: inline-block;
    white-space: nowrap;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.4);
}

.join-button[disabled] {
    opacity: 0.6;
    cursor: default;
}


/* ----------------------------------------------------------
   REVEAL ANIMATION
---------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 768px) {
    .mission-left,
    .mission-right,
    .values-left,
    .values-right {
        flex: 1 1 100%;
    }
}
