.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a002e; /* Darker background based on auxiliary color */
}

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

.page-about__hero-section {
    background: linear-gradient(135deg, #4B0082 0%, #7c00d4 100%); /* Deep purple to lighter purple gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

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

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #4B0082; /* Deep Purple */
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__btn--secondary {
    background-color: #4B0082; /* Deep Purple */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #5c00a8;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about__story-section,
.page-about__mission-vision-section,
.page-about__values-section,
.page-about__cta-section {
    padding: 80px 0;
    background-color: #1a002e; /* Consistent dark background */
}

.page-about__story-section {
    background-color: #2e0050; /* Slightly lighter purple for contrast */
}

.page-about__story-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-about__story-text {
    flex: 1;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-about__story-text p {
    margin-bottom: 20px;
}

.page-about__story-image {
    flex: 1;
    text-align: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

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

.page-about__card {
    background-color: #4B0082; /* Deep Purple */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #f0f0f0;
}

.page-about__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.page-about__card-icon {
    width: 120px; /* Increased size for icons */
    height: 120px; /* Increased size for icons */
    margin-bottom: 20px;
    object-fit: contain;
}

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

.page-about__card p {
    font-size: 1.05em;
}

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

.page-about__value-item {
    background-color: #2e0050;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.page-about__value-item:hover {
    background-color: #4B0082;
}

.page-about__value-icon {
    width: 100px; /* Increased size for icons */
    height: 100px; /* Increased size for icons */
    margin-bottom: 15px;
    object-fit: contain;
}

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

.page-about__value-item p {
    font-size: 1em;
    color: #f0f0f0;
}

.page-about__cta-section {
    background: linear-gradient(45deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #4B0082;
}

.page-about__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #4B0082;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #2e0050;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__story-content {
        flex-direction: column;
    }
    .page-about__image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__card-icon {
        width: 100px;
        height: 100px;
    }
    .page-about__value-icon {
        width: 80px;
        height: 80px;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 576px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__card-title {
        font-size: 1.5em;
    }
    .page-about__value-title {
        font-size: 1.3em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__container {
        padding: 0 15px;
    }
}