:root {
    --primary-color: #FF8C1A; /* Main color */
    --secondary-color: #FFA53A; /* Auxiliary color */
    --background-color: #0D0E12; /* Background */
    --card-bg-color: #17191F; /* Card BG */
    --text-main-color: #FFF3E6; /* Text Main */
    --border-color: #A84F0C; /* Border */
    --glow-color: #FFB04D; /* Glow */
    --deep-orange-color: #D96800; /* Deep Orange */
    --button-gradient: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange-color) 100%);
    --header-offset: 0px; /* Placeholder, will be set by shared.css */
}

.page-about {
    font-family: 'Roboto', sans-serif; /* Assuming Roboto-like font */
    color: var(--text-main-color);
    background-color: var(--background-color);
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section */
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

/* Container for max-width */
.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--card-bg-color); /* Use a card-like background */
    border-bottom: 2px solid var(--border-color);
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and text */
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover; /* Ensure image covers the area */
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

.page-about__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-about__hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-color); /* Using primary color for H1 */
    text-shadow: 0 0 8px rgba(255, 140, 26, 0.5); /* Subtle glow */
}

.page-about__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main-color);
}

.page-about__hero-cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: var(--text-main-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
    min-width: 200px; /* Ensure button is not too small */
    min-height: 50px; /* Ensure button is not too small */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

/* General Section Styling */
.page-about__mission-section,
.page-about__security-gaming-section,
.page-about__support-section,
.page-about__why-choose-us,
.page-about__cta-section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separator */
}

.page-about__mission-section {
    background-color: var(--background-color);
}

.page-about__security-gaming-section {
    background-color: var(--card-bg-color);
}

.page-about__support-section {
    background-color: var(--background-color);
}

.page-about__why-choose-us {
    background-color: var(--card-bg-color);
}

.page-about__cta-section {
    background-color: var(--background-color);
    padding-bottom: 80px;
}

.page-about__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 0 0 5px rgba(255, 165, 58, 0.3);
}

.page-about__section-description,
.page-about__subsection-description {
    font-size: 1rem;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-main-color);
}

.page-about__subsection-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Values Grid */
.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__value-card {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-about__value-card:hover {
    transform: translateY(-5px);
}

.page-about__value-icon {
    width: 100%; /* Ensure image fills card width responsively */
    max-width: 200px; /* Keep images from getting too big */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 150px; /* Adjusted min-height for these specific images */
}

.page-about__value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-about__value-text {
    font-size: 0.95rem;
    color: var(--text-main-color);
}

/* Link Buttons */
.page-about__link-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--button-gradient);
    color: var(--text-main-color);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 165, 58, 0.3);
    min-width: 180px; /* Ensure button is not too small */
    min-height: 40px; /* Ensure button is not too small */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about__link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 58, 0.5);
}

/* Why Choose Us Benefits List */
.page-about__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.page-about__benefit-item {
    background-color: var(--card-bg-color);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* Stack image and text */
    align-items: center; /* Center items */
    text-align: center;
    gap: 15px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-about__benefit-icon {
    flex-shrink: 0;
    width: 100%;
    max-width: 250px; /* Larger image for benefit */
    height: auto;
    border-radius: 8px; /* Square/rounded corners */
    margin-bottom: 0px; /* Gap handled by parent gap */
    min-width: 200px;
    min-height: 150px;
    border: none;
    padding: 0;
}

.page-about__benefit-text {
    font-size: 1rem;
    color: var(--text-main-color);
}

/* CTA Section specific */
.page-about__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--text-main-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.4);
    min-width: 220px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-about__cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 165, 58, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 30px 15px;
    }

    .page-about__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* Adjust H1 for smaller screens */
    }

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

    .page-about__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .page-about__section-description,
    .page-about__subsection-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-about__subsection-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .page-about__values-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-about__value-card,
    .page-about__benefit-item {
        padding: 20px;
    }

    .page-about__benefits-list {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .page-about__hero-image,
    .page-about__value-icon,
    .page-about__benefit-icon {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size even on mobile */
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-cta-button,
    .page-about__link-button,
    .page-about__cta-button {
        width: 100%;
        max-width: 300px; /* Constrain max width for buttons */
        margin-left: auto;
        margin-right: auto;
    }
}