/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #f8f8f8; /* Light text for dark background */
    line-height: 1.6;
    background-color: #1A2B4C; /* Main dark background */
}

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

.page-about__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1A2B4C 0%, #3a4c70 100%);
    color: #f8f8f8;
    gap: 40px;
}

.page-about__hero-content {
    max-width: 800px;
}

.page-about__hero-title {
    font-size: 3.2em;
    color: #F0B90B; /* Accent color for title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-about__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #cccccc;
}

.page-about__hero-cta {
    display: inline-block;
    background-color: #F0B90B; /* Accent color for CTA */
    color: #1A2B4C; /* Dark text for light button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__hero-cta:hover {
    background-color: #e0a90a;
    transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #F0B90B; /* Accent color for section titles */
    margin-bottom: 30px;
    font-weight: bold;
}

.page-about__section-text {
    font-size: 1.1em;
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto 20px auto;
    text-align: left;
}

.page-about__section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__value-item {
    background-color: #2a3b5c; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.page-about__value-title {
    font-size: 1.6em;
    color: #F0B90B; /* Accent color for value titles */
    margin-bottom: 15px;
}

.page-about__value-description {
    font-size: 1em;
    color: #b0b0b0;
}

.page-about__offerings-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-about__offerings-list li {
    background-color: #2a3b5c;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-left: 5px solid #F0B90B; /* Accent border */
    border-radius: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-about__offerings-list li strong {
    color: #F0B90B;
}

.page-about__text-link {
    color: #F0B90B; /* Accent color for text links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-about__text-link:hover {
    color: #e0a90a;
    text-decoration: underline;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #F0B90B; /* Accent color for CTA */
    color: #1A2B4C; /* Dark text for light button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-about__cta-button:hover {
    background-color: #e0a90a;
    transform: translateY(-3px);
}

.page-about__cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-about__cta-button--primary {
    background-color: #F0B90B;
    color: #1A2B4C;
}

.page-about__cta-button--secondary {
    background-color: #1A2B4C;
    color: #F0B90B;
    border: 2px solid #F0B90B;
}

.page-about__cta-button--secondary:hover {
    background-color: #2a3b5c;
    color: #e0a90a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-about__hero {
        flex-direction: column;
        padding: 60px 15px;
    }

    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__hero-subtitle {
        font-size: 1.1em;
    }

    .page-about__section-title {
        font-size: 2em;
    }

    .page-about__section-text {
        font-size: 1em;
    }

    .page-about__values-grid {
        grid-template-columns: 1fr;
    }

    .page-about__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-about__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__hero-subtitle {
        font-size: 0.95em;
    }

    .page-about__section-title {
        font-size: 1.8em;
    }

    .page-about__value-title {
        font-size: 1.4em;
    }

    .page-about__hero-cta, .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}