.page-about {
    color: #ffffff; /* Light text for dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.page-about__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    background-color: #1A1A1A;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.page-about__hero-container {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-about__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-about__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-about__hero-button, .page-about__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__hero-button:hover, .page-about__button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    font-weight: 600;
}

.page-about__mission-section, .page-about__values-section, .page-about__why-choose-us-section, .page-about__cta-section {
    padding: 80px 0;
    background-color: #0d0d0d;
}

.page-about__mission-section {
    text-align: center;
}

.page-about__text {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

.page-about__mission-section .page-about__image {
    width: 800px;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-about__value-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.1);
}

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

.page-about__card-text {
    color: #cccccc;
}

.page-about__why-choose-us-section {
    background-color: #1A1A1A;
}

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

.page-about__feature-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.page-about__feature-item:hover {
    background-color: rgba(255, 215, 0, 0.08);
}

.page-about__feature-icon {
    width: 400px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-about__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-about__feature-description {
    color: #cccccc;
}

.page-about__button--discover {
    margin-top: 50px;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-section {
    background: linear-gradient(135deg, #1A1A1A, #333333);
    text-align: center;
    padding: 100px 0;
}

.page-about__cta-content {
    max-width: 800px;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-about__cta-text {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-about__button--join-now {
    background-color: #FF4500; /* Use a vibrant accent color */
    color: #ffffff;
}

.page-about__button--join-now:hover {
    background-color: #cc3700;
}

.page-about a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about a:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__mission-section .page-about__image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: var(--header-offset, 120px);
        min-height: 500px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-container {
        padding: 30px 15px;
    }
    .page-about__hero-button, .page-about__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .page-about__mission-section, .page-about__values-section, .page-about__why-choose-us-section, .page-about__cta-section {
        padding: 60px 0;
    }
    .page-about__values-grid, .page-about__features-grid {
        grid-template-columns: 1fr;
    }
    .page-about__value-card, .page-about__feature-item {
        padding: 20px;
    }
    .page-about__feature-icon {
        width: 100%;
        height: auto;
        max-width: 400px; /* Ensure images don't stretch too wide on smaller screens */
        margin-left: auto;
        margin-right: auto;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-text {
        font-size: 1em;
    }
    .page-about__text {
        font-size: 1em;
    }
    /* Mobile overflow prevention */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
    .page-about {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.6em;
    }
}