/* style/about.css */
.page-about {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-about__hero-section {
    background: linear-gradient(135deg, #0056B3, #FFC107);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-about__btn--primary {
    background-color: #FFC107; /* Gold */
    color: #0056B3; /* Tech Blue */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-about__btn--primary:hover {
    background-color: #e0a800;
    color: #003f8c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #0056B3; /* Tech Blue */
    border: 2px solid #0056B3; /* Tech Blue */
}

.page-about__btn--secondary:hover {
    background-color: #0056B3; /* Tech Blue */
    color: #fff;
    transform: translateY(-3px);
}

.page-about__section {
    padding: 80px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.page-about__section:nth-of-type(even) {
    background-color: #fff;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #0056B3; /* Tech Blue */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-about__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    color: #555;
}

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

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

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

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

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

.page-about__grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

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

.page-about__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.page-about__card-title {
    font-size: 1.8em;
    color: #0056B3; /* Tech Blue */
    margin-bottom: 20px;
    font-weight: 600;
}

.page-about__card-image {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__values .page-about__value-item {
    background-color: #f0f7ff; /* Light blue background for values */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-about__values .page-about__value-item:hover {
    background-color: #e6f2ff;
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-about__value-title {
    font-size: 1.5em;
    color: #0056B3; /* Tech Blue */
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.page-about__commitment-item {
    background-color: #fff;
    border-left: 5px solid #0056B3; /* Tech Blue border */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.page-about__commitment-item:hover {
    transform: translateY(-5px);
}

.page-about__commitment-title {
    font-size: 1.6em;
    color: #0056B3; /* Tech Blue */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__commitment-item p {
    font-size: 1.05em;
    color: #444;
}

.page-about__image--full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-about__cta {
    background: linear-gradient(135deg, #003f8c, #0056B3);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.page-about__cta-title {
    font-size: 3em;
    margin-bottom: 25px;
    font-weight: 700;
    color: #FFC107; /* Gold */
}

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

.page-about__cta-buttons .page-about__btn {
    margin: 0 15px;
}

.page-about__image--cta {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.15;
    width: 400px;
    height: auto;
    transform: rotate(15deg) translateX(50px);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__content-grid {
        grid-template-columns: 1fr;
    }
    .page-about__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-about__image-wrapper {
        order: -1; /* Image appears before text on small screens */
        margin-bottom: 40px;
    }
    .page-about__grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-about__grid-3-cols {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 2.5em;
    }
    .page-about__cta-buttons .page-about__btn {
        margin-bottom: 20px;
    }
    .page-about__image--cta {
        width: 250px;
        transform: rotate(10deg) translateX(30px);
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__section-description {
        font-size: 1em;
    }
    .page-about__card-title {
        font-size: 1.6em;
    }
    .page-about__value-icon {
        width: 50px;
        height: 50px;
    }
    .page-about__value-title {
        font-size: 1.3em;
    }
    .page-about__commitment-title {
        font-size: 1.4em;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__hero-description {
        font-size: 0.95em;
    }
    .page-about__btn {
        width: 100%;
        margin: 10px 0 !important;
    }
    .page-about__section-title {
        font-size: 1.6em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__image--cta {
        display: none;
    }
}