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

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

.page-about__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

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

.page-about__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-about__button--primary {
    background-color: #FFD700;
    color: #003366;
}

.page-about__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-about__button--secondary {
    background-color: #003366;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-about__button--secondary:hover {
    background-color: #002244;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-about__button--link {
    background-color: transparent;
    color: #003366;
    border: 2px solid #003366;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-about__button--link:hover {
    background-color: #003366;
    color: #FFD700;
}

.page-about__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-about__section:last-of-type {
    border-bottom: none;
}

.page-about__heading {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
}

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

.page-about__grid--reverse {
    flex-direction: row-reverse;
}

.page-about__content-block {
    flex: 1;
    padding-right: 20px;
}

.page-about__content-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-about__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

.page-about__value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-about__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-about__value-item h3 {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-about__value-item p {
    color: #666;
}

.page-about__feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__feature-list li {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-about__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-about__feature-list h3 {
    font-size: 1.6em;
    color: #003366;
    margin-bottom: 15px;
}

.page-about__feature-list p {
    color: #666;
    margin-bottom: 20px;
}

.page-about__cta {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-about__heading--cta {
    color: #FFD700;
    font-size: 2.8em;
    margin-bottom: 20px;
}

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

.page-about__cta-buttons .page-about__button {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__grid {
        flex-direction: column;
    }

    .page-about__grid--reverse {
        flex-direction: column;
    }

    .page-about__content-block {
        padding-right: 0;
        text-align: center;
    }

    .page-about__image-block {
        margin-top: 30px;
    }

    .page-about__title {
        font-size: 2.5em;
    }

    .page-about__heading {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 60px 0;
    }

    .page-about__title {
        font-size: 2em;
    }

    .page-about__subtitle {
        font-size: 1em;
    }

    .page-about__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-about__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-about__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-about__cta-buttons .page-about__button {
        margin: 10px 0;
        width: 80%;
    }

    .page-about__heading {
        font-size: 1.8em;
    }

    .page-about__values-grid, .page-about__feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__heading {
        font-size: 1.5em;
    }
    .page-about__container {
        padding: 0 15px;
    }
    .page-about__button {
        width: 100%;
        box-sizing: border-box;
    }
}