/* Number Grid Styles */
.number-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.number-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.number-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.number-card__info {
    padding: 30px;
}

.number-card__id {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent, #4287f5);
    margin-bottom: 15px;
    line-height: 1;
}

.number-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.number-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Updated deliver section styles */
.deliver {
    padding: 80px 5%;
    background: #f8f9fa;
}

.deliver__title {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .number-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .number-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }
    
    .number-card__info {
        padding: 20px;
    }
    
    .number-card__id {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .number-card__title {
        font-size: 18px;
    }
    
    .number-card__text {
        font-size: 14px;
    }
    
    .deliver {
        padding: 60px 5%;
    }
    
    .deliver__title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .deliver__title {
        font-size: 28px;
    }
}

/* Rellax wrapper adjustments */
.rellax-wrapper.mini {
    margin: 80px 0;
    height: 400px;
}

@media (max-width: 768px) {
    .rellax-wrapper.mini {
        margin: 60px 0;
        height: 300px;
    }
}

/* Info section adjustments */
.info__content {
    color: #666;
}

.info__content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.info__content p:last-child {
    margin-bottom: 0;
}

.info__content .section-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.info__content .section-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}