.page-about {
    font-family: Arial, sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    line-height: 1.6;
    background-color: #0A2342; /* Main background color */
}

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

.page-about__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1a3a5e 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Accent color for hero text */
}

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

.page-about__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-about__section {
    padding: 60px 0;
    background-color: #0A2342;
}

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

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

.page-about__heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-about__content-grid--reverse .page-about__image-wrapper {
    order: 2;
}

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

.page-about__text-content strong {
    color: #FFD700;
}

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

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

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

.page-about__value-item {
    background-color: #1a3a5e; /* Dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-5px);
    background-color: #2b4e72; /* Slightly lighter on hover */
}

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

.page-about__value-item h3 {
    font-size: 1.6em;
    color: #FFD700; /* Accent color */
    margin-bottom: 15px;
}

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

.page-about__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #0A2342; /* Main dark blue for text */
    margin-right: 15px;
}

.page-about__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker accent on hover */
    transform: translateY(-2px);
}

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

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-2px);
}

.page-about__section--cta {
    background: linear-gradient(90deg, #0A2342, #3b5c82); /* Gradient background for CTA */
    padding: 80px 0;
    text-align: center;
}

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

.page-about__heading--cta {
    color: #FFD700;
    margin-bottom: 25px;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__subtitle {
        font-size: 1.2em;
    }
    .page-about__heading {
        font-size: 2em;
    }
    .page-about__content-grid {
        grid-template-columns: 1fr;
    }
    .page-about__content-grid--reverse .page-about__image-wrapper {
        order: initial;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-about__btn {
        width: 80%;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__heading {
        font-size: 1.8em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__value-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: 0.9em;
    }
    .page-about__heading {
        font-size: 1.5em;
    }
    .page-about__btn {
        padding: 10px 20px;
        font-size: 1em;
        width: 90%;
    }
    .page-about__cta-text {
        font-size: 1.1em;
    }
}