/* Updated In the Numbers section with colored cards */
.numbers-section {
    padding: 100px 0;
    background-color: #111;
    position: relative;
}

.numbers-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 70%);
    z-index: 1;
}

.numbers-section .container {
    position: relative;
    z-index: 2;
}

.numbers-heading {
    font-size: 4rem;
    margin-bottom: 60px;
    font-weight: 800;
}

.numbers-description {
    max-width: 600px;
    margin-left: auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 60px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.numbers-grid-row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.number-card {
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Pastel colors for number cards - restored with specific colors */
.numbers-grid .number-card:nth-child(1) {
    background-color: #EF9A9A !important; /* Red */
}

.numbers-grid .number-card:nth-child(2) {
    background-color: #A5D6A7 !important; /* Green */
}

.numbers-grid .number-card:nth-child(3) {
    background-color: #D1C4E9 !important; /* Purple */
}

.numbers-grid-row2 .number-card:nth-child(1) {
    background-color: #90CAF9 !important; /* Blue */
}

.numbers-grid-row2 .number-card:nth-child(2) {
    background-color: #FFE082 !important; /* Yellow/Gold */
}

.number-value {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.number-label {
    font-size: 1.2rem;
    color: #000;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .numbers-grid, .numbers-grid-row2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .numbers-grid, .numbers-grid-row2 {
        grid-template-columns: 1fr;
    }
}
