/* style/about.css */

/* Base styles for the about page */
.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #121212, so light text */
    background-color: #121212; /* Inherit from body or set explicitly if needed, but shared.css sets body */
}

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    padding-bottom: 60px;
    text-align: center;
    background-color: #017439; /* Brand color as background */
    color: #ffffff;
    overflow: hidden;
}

.page-about__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFF00; /* Use yellow for title to stand out */
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-about__btn-primary {
    background-color: #C30808; /* Register/Login button color */
    color: #FFFF00; /* Register/Login font color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
}

.page-about__btn-primary:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-about__btn-secondary {
    background-color: #017439; /* Main brand color */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
}

.page-about__btn-secondary:hover {
    background-color: #005a2e;
    transform: translateY(-2px);
}

.page-about__btn-link {
    color: #FFFF00; /* Link color for internal links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-about__btn-link:hover {
    color: #ffffff;
}

.page-about__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 40px auto 0;
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

/* General Section Styling */
.page-about__section {
    padding: 80px 0;
    background-color: #121212; /* Default section background */
    color: #ffffff; /* Default section text color */
}

.page-about__section:nth-of-type(even) {
    background-color: #1a1a1a; /* Slightly different background for alternating sections */
}

.page-about__dark-bg {
    background-color: #017439; /* Brand color background for some sections */
    color: #ffffff;
}

.page-about__section-title {
    font-size: 2.2em;
    color: #FFFF00; /* Yellow for main section titles */
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-about__subsection-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 25px;
    border-left: 5px solid #FFFF00;
    padding-left: 15px;
}

.page-about__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #f0f0f0;
}

.page-about__value-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-about__value-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    line-height: 1.5;
    border-left: 5px solid #017439;
}

.page-about__value-list li strong {
    color: #FFFF00;
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.page-about__image-content {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Min size requirement */
    min-height: 200px; /* Min size requirement */
}

/* Video Showcase Section */
.page-about__video-showcase {
    background-color: #1a1a1a;
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-about__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Max width for video container */
    margin: 0 auto;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-about__video-player {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.page-about__video-cta {
    text-align: center;
    margin-top: 40px;
}

/* Why Choose Section Specifics */
.page-about__why-choose {
    background-color: #017439;
}

.page-about__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__feature-card {
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent black for contrast on green */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-about__card-title {
    font-size: 1.5em;
    color: #FFFF00;
    margin-bottom: 15px;
}

.page-about__card-description {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

/* FAQ Section */
.page-about__faq-section {
    background-color: #1a1a1a;
    padding-bottom: 80px;
}

.page-about__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__faq-item {
    background-color: #121212;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: #017439; /* Brand color for question background */
    transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
    background-color: #005a2e;
}