/* Fun Facts Page Styles */

/* Fun Facts Section */
.fun-facts-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Facts Container */
.facts-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

/* Facts List */
.facts-list {
    list-style: none;
    counter-reset: fact-counter;
    padding: 0;
    margin: 0;
}

/* Individual Fact Item */
.fact-item {
    counter-increment: fact-counter;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    border-left: 5px solid #667eea;
    position: relative;
    transition: all 0.3s ease;
}

.fact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.2);
}

/* Fact Number Circle */
.fact-number {
    position: absolute;
    left: -15px;
    top: 20px;
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.fact-number::before {
    content: counter(fact-counter);
}

/* Fact Text */
.fact-text {
    color: #1e293b;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    margin-left: 25px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fun-facts-section {
        padding: 40px 0;
    }
    
    .facts-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .fact-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .fact-text {
        font-size: 15px;
        margin-left: 20px;
    }
    
    .fact-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
        left: -12px;
    }
}

@media (max-width: 480px) {
    .facts-container {
        padding: 20px 15px;
    }
    
    .fact-item {
        padding: 15px;
    }
    
    .fact-text {
        font-size: 14px;
        margin-left: 15px;
    }
}