/* 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;
}

/* Hero Section */
.page-about__hero {
    position: relative;
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

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

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

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

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

.page-about__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-about__btn--secondary {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

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

/* General Section Styling */
.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__section--dark {
    background-color: #8B0000; /* Dark Red */
    color: #fff;
}

.page-about__section-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.page-about__text-block {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-about__image-inline {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.page-about__section-title {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #8B0000; /* Dark Red */
    position: relative;
    padding-bottom: 10px;
}

.page-about__section-title--light {
    color: #FFD700; /* Gold */
}

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

.page-about__section--dark .page-about__section-title::after {
    background-color: #FFD700; /* Gold */
}

.page-about__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-about__section--dark p {
    color: #eee;
}

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

.page-about__value-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.page-about__value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

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

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

/* Features List */
.page-about__features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.page-about__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: drop-shadow(0 0 3px rgba(139, 0, 0, 0.5));
}

.page-about__features-list strong {
    color: #8B0000; /* Dark Red */
}

/* CTA Section */
.page-about__cta {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red */
    padding: 80px 0;
    text-align: center;
}

.page-about__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #8B0000;
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6a0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__section-content {
        flex-direction: column;
    }
    .page-about__text-block {
        min-width: unset;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__value-item h3 {
        font-size: 1.4em;
    }
    .page-about__features-list li {
        font-size: 1em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
}