/* style/about.css */
.page-about {
    font-family: Arial, sans-serif;
    color: #f5f5f5;
    background-color: #0A192F;
}

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

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

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

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

.page-about__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.page-about__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-about__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-about__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-about__section {
    padding: 80px 0;
    text-align: center;
}

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

.page-about__section-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-about__grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.page-about__grid-two-cols--reverse {
    grid-template-areas: "image content";
}

.page-about__grid-two-cols--reverse > .page-about__content-block {
    grid-area: content;
}

.page-about__grid-two-cols--reverse > .page-about__image-wrapper {
    grid-area: image;
}

.page-about__card {
    background-color: #1a2c42;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-about__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

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

.page-about__card-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #cccccc;
}

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

.page-about__value-item {
    background-color: #0A192F;
    border: 1px solid #FFD700;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-about__value-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-about__value-text {
    font-size: 1em;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.page-about__why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-about__why-list li {
    font-size: 1.15em;
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-about__why-list li::before {
    content: '✔';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.4em;
    top: -2px;
}

.page-about__cta {
    background: linear-gradient(135deg, #1e3a5f, #0A192F);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-about__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern,gold]');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-about__cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-about__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-about__cta-description {
    font-size: 1.3em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__grid-two-cols {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-about__grid-two-cols--reverse {
        grid-template-areas: unset;
    }
    .page-about__grid-two-cols > .page-about__content-block,
    .page-about__grid-two-cols > .page-about__image-wrapper {
        grid-area: unset;
    }
    .page-about__why-list {
        text-align: center;
    }
    .page-about__why-list li {
        padding-left: 0;
    }
    .page-about__why-list li::before {
        position: static;
        display: block;
        margin-bottom: 10px;
    }
    .page-about__cta-title {
        font-size: 2.5em;
    }
    .page-about__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section,
    .page-about__section,
    .page-about__cta {
        padding: 60px 0;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__card {
        padding: 30px;
    }
    .page-about__card-icon {
        width: 60px;
        height: 60px;
    }
    .page-about__card-title {
        font-size: 1.5em;
    }
    .page-about__value-item {
        padding: 20px;
    }
    .page-about__value-icon {
        width: 50px;
        height: 50px;
    }
    .page-about__value-title {
        font-size: 1.3em;
    }
    .page-about__why-list li {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__section-title {
        font-size: 1.6em;
    }
    .page-about__card-title {
        font-size: 1.3em;
    }
    .page-about__value-title {
        font-size: 1.2em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
}