:root {
    --primary-color: #11A84E; /* Main color */
    --secondary-color: #22C768; /* Auxiliary color */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    --card-bg: #11271B; /* Card background */
    --page-bg: #08160F; /* Page background */
    --text-main: #F2FFF6; /* Main text color */
    --text-secondary: #A7D9B8; /* Secondary text color */
    --border-color: #2E7A4E; /* Border color */
    --glow-color: #57E38D; /* Glow color */
    --gold-color: #F2C14E; /* Gold color */
    --divider-color: #1E3A2A; /* Divider color */
    --deep-green: #0A4B2C; /* Deep green */
}

.page-about {
    background-color: var(--page-bg);
    color: var(--text-main); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--deep-green); /* Fallback background for hero */
    text-align: center;
    overflow: hidden;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Limit height for hero image */
    margin-bottom: 30px;
}

.page-about__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background layers */
}

.page-about__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Subtle glow */
}

.page-about__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styling */
.page-about__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-about__section:last-of-type {
    border-bottom: none;
}

.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(17, 168, 78, 0.3);
}

.page-about__subsection-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__paragraph {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-about__list-item {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-about__list-item::before {
    content: "•";
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: -2px;
}

/* Image Styling */
.page-about__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-about__image--left {
    float: left;
    margin-right: 30px;
    width: 40%; /* Example width for floating image */
    min-width: 300px; /* Ensure minimum size */
}

.page-about__image--right {
    float: right;
    margin-left: 30px;
    width: 40%; /* Example width for floating image */
    min-width: 300px; /* Ensure minimum size */
}

.page-about__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%; /* Example width for centered image */
    min-width: 400px; /* Ensure minimum size */
}

/* Clearfix for floating images */
.page-about__container::after {
    content: "";
    display: table;
    clear: both;
}

/* Button Styling */
.page-about__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__button--primary {
    background: var(--button-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-about__button--primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-about__button--secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-about__button--secondary:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.page-about__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* FAQ Section */
.page-about__faq-section {
    background-color: var(--card-bg);
    padding: 60px 0;
    border-top: 1px solid var(--divider-color);
}

.page-about__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-about__faq-item {
    background-color: #1a342a; /* Slightly lighter than card-bg for contrast */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-about__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    list-style: none; /* Remove default marker */
}

.page-about__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

.page-about__faq-qtext {
    flex-grow: 1;
    font-size: 1.1rem;
    color: var(--text-main);
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-about__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-about__image--left,
    .page-about__image--right,
    .page-about__image--center {
        float: none;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-bottom: 40px;
    }

    .page-about__hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .page-about__hero-description {
        font-size: 1rem;
    }

    .page-about__section {
        padding: 40px 0;
    }

    .page-about__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-about__subsection-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .page-about__paragraph,
    .page-about__list-item,
    .page-about__faq-qtext,
    .page-about__faq-answer p {
        font-size: 0.95rem;
    }

    .page-about__button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none !important;
    }

    /* Container padding for mobile */
    .page-about__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ensure button containers also adapt */
    .page-about__cta-buttons,
    .page-about__button-group,
    .page-about__btn-container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      flex-wrap: wrap !important;
      gap: 10px;
    }

    .page-about__cta-buttons {
        display: flex;
        flex-direction: column;
    }
    
    /* Video section top padding, ensure it's small, not header offset */
    .page-about__video-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-about__section-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
    }
    .page-about__subsection-title {
        font-size: clamp(1.1rem, 6vw, 1.4rem);
    }
    .page-about__faq-qtext {
        font-size: 1rem;
    }
}