/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0d061f; /* A slightly lighter dark background than main #1A0D3B */
}

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

.page-about__hero {
    position: relative;
    padding: 100px 0;
    background-color: #1A0D3B; /* Primary dark color */
    color: #FFFFFF; /* White text for contrast */
    text-align: center;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 13, 59, 0.9), rgba(255, 215, 0, 0.2)); /* Gradient overlay */
    z-index: 1;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 2;
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle background image */
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A0D3B; /* Dark text on gold */
    border: 2px solid #FFD700;
}

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

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-about__section {
    padding: 80px 0;
    background-color: #1A0D3B; /* Primary dark color */
    margin-bottom: 20px;
}

.page-about__section:nth-of-type(odd) {
    background-color: #12092a; /* Slightly different dark shade for visual separation */
}

.page-about__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section headings */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-about__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 20px auto 0;
    border-radius: 2px;
}

.page-about__subheading {
    font-size: 1.8em;
    color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-about__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
    padding: 20px;
}

.page-about__text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-about__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-about__feature-item {
    background-color: #2c1a50; /* Darker shade for feature cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__feature-item:hover {
    transform: translateY(-8px);
    background-color: #3f2a6f;
}

.page-about__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-about__feature-item p {
    font-size: 1em;
    color: #CCCCCC;
}

.page-about__cta-final {
    background-color: #1A0D3B; /* Primary dark color */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-about__cta-final .page-about__heading {
    margin-bottom: 20px;
}

.page-about__cta-final .page-about__subtitle {
    margin-bottom: 50px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__subheading {
        font-size: 1.5em;
    }
    .page-about__content-grid {
        flex-direction: column;
    }
    .page-about__content-grid--reverse {
        flex-direction: column;
    }
    .page-about__text-content, .page-about__image-wrapper {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1.1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__heading {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about__feature-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__heading {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-about__feature-item {
        padding: 20px;
    }
    .page-about__features-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-buttons {
        flex-direction: column;
    }
}