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

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

.page-about__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-about__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(245, 176, 65, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-about__hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background-color: rgba(245, 176, 65, 0.15);
    border-radius: 50%;
    transform: rotate(-30deg);
    z-index: 0;
}

.page-about__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #F5B041;
    position: relative;
    z-index: 1;
}

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

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

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

.page-about__section-title {
    font-size: 2.5em;
    color: #0A2342;
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
}

.page-about__section-title--center {
    text-align: center;
}

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

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

.page-about__text-content {
    flex: 1;
}

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

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

.page-about__text-content ul {
    list-style: none;
    padding-left: 0;
}

.page-about__text-content ul li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23F5B041" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #444;
}

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

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

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

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

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

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(245, 176, 65, 0.3));
}

.page-about__value-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-about__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-about__btn--primary {
    background-color: #F5B041;
    color: #0A2342;
    border: 2px solid #F5B041;
}

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

.page-about__btn--secondary {
    background-color: #0A2342;
    color: #F5B041;
    border: 2px solid #0A2342;
}

.page-about__btn--secondary:hover {
    background-color: #1A3A60;
    color: #F5B041;
    transform: translateY(-2px);
}

.page-about__section--cta {
    background-color: #0A2342;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #F5B041;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

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

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

    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__hero-description,
    .page-about__cta-description {
        font-size: 1.1em;
    }

    .page-about__section-title {
        font-size: 2em;
        text-align: center;
    }

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

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

    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__hero-description {
        font-size: 1em;
    }

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

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__value-title {
        font-size: 1.5em;
    }

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

    .page-about__cta-title {
        font-size: 2.2em;
    }

    .page-about__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }

    .page-about__hero-description {
        font-size: 0.9em;
    }

    .page-about__section-title {
        font-size: 1.6em;
    }

    .page-about__value-icon {
        width: 50px;
        height: 50px;
    }

    .page-about__value-title {
        font-size: 1.3em;
    }

    .page-about__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-about__cta-title {
        font-size: 1.8em;
    }

    .page-about__cta-description {
        font-size: 0.9em;
    }
}