:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg-color: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main-color: #1F2D3D;
    --custom-color-1776249996415: #000000; /* Main text color */
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

.page-about {
    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

.page-about__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    text-align: center;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px; /* Max height for aesthetic */
    object-fit: cover;
    display: block; /* Ensures no extra space below image */
    margin-bottom: 20px; /* Space between image and content */
}

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    font-weight: 700;
    color: var(--custom-color-1776249996415);
    line-height: 1.2;
    margin-bottom: 15px;
    max-width: 60ch; /* Limit title width for readability */
    margin-left: auto;
    margin-right: auto;
}

.page-about__description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: var(--text-main-color);
    max-width: 70ch; /* Limit description width for readability */
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    font-weight: 700;
    color: var(--custom-color-1776249996415);
    text-align: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.page-about__paragraph {
    font-size: 1em;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__our-story-section {
    background-color: var(--card-bg-color);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about__mission-vision-values-section {
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
}

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

.page-about__mvv-item {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid var(--border-color);
}

.page-about__mvv-title {
    font-size: 1.5em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-about__values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about__value-item {
    font-size: 1em;
    color: var(--text-main-color);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-about__value-item::before {
    content: '✅'; /* Using an emoji for a simple icon */
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.page-about__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__why-choose-us-section {
    background-color: var(--background-color);
    padding: 60px 0;
    margin-bottom: 40px;
}

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

.page-about__feature-card {
    background-color: var(--card-bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-about__feature-title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-about__feature-description {
    font-size: 0.95em;
    color: var(--text-main-color);
}

.page-about__contact-cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--card-bg-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__hero-image {
        max-height: 400px; /* Adjust hero image height for mobile */
    }

    .page-about__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-about__description {
        font-size: clamp(0.9em, 2.5vw, 1.1em);
    }

    .page-about__section-title {
        font-size: clamp(1.5em, 5vw, 2em);
    }

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

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

    /* Mobile image overflow prevention */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}