/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-about__hero {
    background-color: #1A237E; /* Main color */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Secondary color for emphasis */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1em;
}

.page-about__btn--primary {
    background-color: #FFD700; /* Secondary color */
    color: #1A237E; /* Main color */
    border: 2px solid #FFD700;
}

.page-about__btn--primary:hover {
    background-color: #e5c300;
    color: #0d124b;
    border-color: #e5c300;
}

.page-about__btn--secondary {
    background-color: #1A237E; /* Main color */
    color: #FFD700; /* Secondary color */
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #0d124b;
    color: #e5c300;
    border-color: #e5c300;
}

.page-about__section {
    padding: 60px 0;
}

.page-about__section:nth-child(odd) {
    background-color: #ffffff;
}

.page-about__section:nth-child(even) {
    background-color: #f0f2f5;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700; /* Secondary color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-about__mission-vision .page-about__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .page-about__mission-vision .page-about__container {
        grid-template-columns: 1fr 1fr;
    }
}

.page-about__content-block h2 {
    font-size: 1.8em;
    color: #1A237E;
    margin-bottom: 20px;
}

.page-about__content-block p {
    font-size: 1.1em;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.page-about__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
}

.page-about__icon {
    color: #FFD700; /* Secondary color */
    margin-right: 10px;
    font-size: 1.2em;
}

.page-about__icon--check::before {
    content: '✔'; /* Unicode checkmark */
    display: inline-block;
    transform: scale(1.2);
}

.page-about__image-inline {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__why-choose-us {
    text-align: center;
}

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

.page-about__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-about__grid-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(26, 35, 126, 0.3)); /* Main color shadow */
}

.page-about__grid-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-about__grid-item p {
    color: #555;
    font-size: 1em;
}

.page-about__team {
    text-align: center;
}

.page-about__team-description {
    font-size: 1.1em;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.page-about__member-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-about__member-card:hover {
    transform: scale(1.03);
}

.page-about__member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #FFD700; /* Secondary color border */
    box-shadow: 0 0 0 6px rgba(26, 35, 126, 0.2); /* Main color subtle shadow */
}

.page-about__member-name {
    font-size: 1.6em;
    color: #1A237E;
    margin-bottom: 5px;
}

.page-about__member-role {
    color: #777;
    font-size: 0.95em;
}

.page-about__cta {
    background-color: #1A237E; /* Main color */
    color: #fff;
    text-align: center;
    padding: 80px 0;
    background-image: url('[GALLERY:bg:abstract,geometric,blue_gold,qq88]'); /* Abstract background */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.page-about__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.page-about__cta-content {
    position: relative;
    z-index: 1;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700; /* Secondary color */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__hero-description {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 60px 0;
        min-height: 300px;
    }
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__content-block h2 {
        font-size: 1.5em;
    }
    .page-about__content-block p,
    .page-about__list li,
    .page-about__grid-item p,
    .page-about__team-description,
    .page-about__cta-description {
        font-size: 0.95em;
    }
    .page-about__grid-item,
    .page-about__member-card {
        padding: 20px;
    }
    .page-about__grid-icon {
        width: 50px;
        height: 50px;
    }
    .page-about__grid-title {
        font-size: 1.3em;
    }
    .page-about__member-avatar {
        width: 100px;
        height: 100px;
    }
    .page-about__member-name {
        font-size: 1.4em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 40px 0;
        min-height: 250px;
    }
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-about__section {
        padding: 30px 0;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.5em;
    }
    .page-about__cta-description {
        font-size: 0.9em;
    }
}