/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

.page-about__hero {
    background: linear-gradient(135deg, #FF0055, #00FFEE, #FF0055);
    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: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.page-about__hero .page-about__container {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.page-about__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(0, 255, 238, 0.7);
}

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

.page-about__button {
    display: inline-block;
    background-color: #FF0055;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 85, 0.4);
    border: none;
}

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

.page-about__button--secondary {
    background-color: #00FFEE;
    box-shadow: 0 5px 15px rgba(0, 255, 238, 0.4);
}

.page-about__button--secondary:hover {
    background-color: #00D3D3;
    box-shadow: 0 8px 20px rgba(0, 255, 238, 0.6);
}

.page-about__button--outline {
    background-color: transparent;
    border: 2px solid #00FFEE;
    color: #00FFEE;
    box-shadow: none;
}

.page-about__button--outline:hover {
    background-color: #00FFEE;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 255, 238, 0.6);
}

.page-about__link-button {
    display: inline-block;
    color: #00FFEE;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.page-about__link-button:hover {
    color: #FF0055;
}

.page-about__section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 0 0 8px rgba(255, 0, 85, 0.5);
}

.page-about__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-about__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-about__content-grid p {
    flex: 1;
    font-size: 1.1em;
    color: #E0E0E0;
}

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

.page-about__image--centered {
    display: block;
    margin: 40px auto 0;
    max-width: 80%;
}

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

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

.page-about__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3a3a3a;
}

.page-about__feature-item h3 {
    color: #00FFEE;
    font-size: 1.6em;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 238, 0.5);
}

.page-about__feature-item p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-about__cta-section {
    background: linear-gradient(45deg, #FF0055, #00FFEE);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-about__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

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

.page-about__cta-buttons .page-about__button {
    margin: 0 15px;
}

.highlight {
    color: #00FFEE;
    text-shadow: 0 0 8px rgba(0, 255, 238, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__title {
        font-size: 2.8em;
    }
    .page-about__subtitle {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__content-grid {
        flex-direction: column;
    }
    .page-about__content-grid:nth-child(even) {
        flex-direction: column;
    }
    .page-about__image {
        max-width: 80%;
    }
    .page-about__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-about__hero {
        padding: 80px 0;
    }
    .page-about__title {
        font-size: 2.2em;
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__section {
        padding: 60px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-about__content-grid p {
        font-size: 1em;
    }
    .page-about__image {
        max-width: 90%;
    }
    .page-about__feature-item h3 {
        font-size: 1.4em;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-text {
        font-size: 1em;
    }
    .page-about__cta-buttons .page-about__button {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero {
        padding: 60px 0;
    }
    .page-about__title {
        font-size: 1.8em;
    }
    .page-about__subtitle {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-text {
        font-size: 0.9em;
    }
}