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

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

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

.page-about__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-about__section {
    padding: 80px 0;
    background-color: #1A2E44;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-about__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-about__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
    min-width: 300px;
}

.page-about__text-content h2 {
    text-align: left;
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #FFD700;
    padding-bottom: 0;
}

.page-about__text-content h2::after {
    display: none;
}

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

.page-about__image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

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

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

.page-about__value-item:hover {
    transform: translateY(-10px);
    background-color: #3A5C80;
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

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

.page-about__cta {
    background-color: #1A2E44;
    text-align: center;
    padding: 100px 0;
}

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

.page-about__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2E44;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-about__button:hover {
    background-color: #e5c000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-about__button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-about__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__text-content h2 {
        font-size: 1.8em;
    }
    .page-about__content-wrapper {
        flex-direction: column;
    }
    .page-about__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-about__image-container {
        order: -1; /* Image appears above text on smaller screens */
    }
    .page-about__text-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    .page-about__text-content h2 {
        font-size: 1.6em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__button {
        padding: 12px 25px;
        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.8em;
    }
    .page-about__text-content h2 {
        font-size: 1.4em;
    }
    .page-about__value-item h3 {
        font-size: 1.4em;
    }
    .page-about__cta-text {
        font-size: 1.1em;
    }
    .page-about__button {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }
}