﻿body {
}
.hero-benefits {
    border: solid;
    border-color: #0e1a42;
    border-radius: 50px;
    background: linear-gradient(135deg, #5870bf 0%, #3a4f8c 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
}

.benefit-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

    .benefit-card:hover {
        transform: translateY(-10px);
    }

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #5870bf;
}

.cognitive-benefits {
    background-color: #e8f4f8;
}

.social-benefits {
    background-color: #f0f7e6;
}

.emotional-benefits {
    background-color: #f9f2e8;
}

.physical-benefits {
    background-color: #f0e8f8;
}

.educational-benefits {
    background-color: #fff0f5;
}

.section-title {
    color: #3a4f8c;
    border-bottom: 2px solid #5870bf;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.fact-box {
    background-color: #5870bf;
    color: white;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.game-image {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.quote {
    font-style: italic;
    border-left: 4px solid #5870bf;
    padding-left: 20px;
    margin: 30px 0;
}