/* style/about.css */
.page-about {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Animation for sections */
.page-about .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.page-about .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-about__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

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

.page-about__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFCC00; /* Wealth Gold */
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-about__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-about__hero-image {
    max-width: 600px;
    width: 100%;
}

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

.page-about__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Wealth Gold */
    color: #003366; /* Betting Blue */
    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 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

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

.page-about__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

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

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

.page-about__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.page-about__section h2 {
    font-size: 2.5em;
    color: #003366; /* Betting Blue */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-about__section h3 {
    font-size: 1.8em;
    color: #003366; /* Betting Blue */
    margin-top: 40px;
    margin-bottom: 15px;
}

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

.page-about__section ul {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
}

.page-about__section ul li {
    background-color: #e0eaf5; /* Lighter shade of Betting Blue */
    color: #003366; /* Betting Blue */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: left;
    font-size: 1.1em;
    font-weight: 500;
    border-left: 5px solid #FFCC00; /* Wealth Gold */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.page-about__value-item, .page-about__team-member, .page-about__benefit-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover, .page-about__team-member:hover, .page-about__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-about__value-item img, .page-about__team-member img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-about__value-item h3, .page-about__team-member h3, .page-about__benefit-item h3 {
    color: #003366; /* Betting Blue */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-about__value-item p, .page-about__team-member p, .page-about__benefit-item p {
    font-size: 1em;
    color: #666;
    text-align: center;
}

.page-about__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about__image-center {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 40px auto 20px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about__cta-bottom {
    background-color: #003366; /* Betting Blue */
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-about__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.page-about__contact a {
    color: #003366; /* Betting Blue */
    text-decoration: underline;
    font-weight: bold;
}

.page-about__contact a:hover {
    color: #FFCC00; /* Wealth Gold */
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-about__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-about__hero-content {
        flex: 1;
        padding-right: 40px;
    }

    .page-about__hero-image {
        flex: 1;
        text-align: right;
    }

    .page-about__hero h1 {
        font-size: 4em;
    }

    .page-about__section h2 {
        font-size: 3em;
    }

    .page-about__section h2::after {
        left: 0;
        transform: translateX(0);
    }

    .page-about__section p {
        text-align: left;
    }
    
    .page-about__section ul li {
        padding: 20px 25px;
    }

    .page-about__cta-bottom p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .page-about__hero {
        padding: 60px 15px;
        gap: 20px;
    }

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

    .page-about__hero p {
        font-size: 1em;
    }

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

    .page-about__section {
        padding: 40px 15px;
    }

    .page-about__section h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-about__section h3 {
        font-size: 1.6em;
    }

    .page-about__section p {
        font-size: 0.95em;
    }

    .page-about__values-grid, .page-about__team-grid, .page-about__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-about__value-item, .page-about__team-member, .page-about__benefit-item {
        padding: 25px;
    }

    .page-about__cta-bottom {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-about__hero h1 {
        font-size: 2em;
    }
    .page-about__section h2 {
        font-size: 1.8em;
    }
    .page-about__section h3 {
        font-size: 1.4em;
    }
    .page-about__cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}