/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color on dark backgrounds */
    background-color: #000000; /* Main background color */
}

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

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

.page-about__section--dark {
    background-color: #1a1a1a; /* Slightly lighter black for contrast */
}

.page-about__section--gradient {
    background: linear-gradient(90deg, #000000 0%, #333333 100%);
}

.page-about__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    position: relative;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-about__hero .page-about__container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    line-height: 1.2;
}

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

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

.page-about__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Black text on gold */
}

.page-about__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-2px);
}

.page-about__btn--secondary {
    background-color: #333333; /* Dark gray */
    color: #FFD700; /* Gold text on dark gray */
    border: 2px solid #FFD700;
}

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

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

.page-about__section-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #FFD700;
    position: relative;
    display: inline-block;
}

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

.page-about__grid {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

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

.page-about__content-block,
.page-about__image-block {
    flex: 1;
}

.page-about__content-block p,
.page-about__content-block li {
    font-size: 1.1em;
    line-height: 1.8;
    color: #cccccc;
}

.page-about__content-block a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__content-block a:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

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

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

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

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(1) sepia(1) saturate(10) hue-rotate(0deg) brightness(1.5); /* Make icons gold */
}

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

.page-about__value-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-about__list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #cccccc;
}

.page-about__list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

.page-about__list-strong {
    color: #FFD700;
}

.page-about__cta {
    padding: 100px 0;
}

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

.page-about__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 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 {
        flex-direction: column;
        text-align: center;
    }
    .page-about__grid--reverse {
        flex-direction: column;
    }
    .page-about__content-block,
    .page-about__image-block {
        width: 100%;
    }
    .page-about__list {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0 40px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__value-item {
        padding: 25px;
    }
    .page-about__value-title {
        font-size: 1.5em;
    }
    .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__section-title {
        font-size: 1.5em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}