@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
        
.box {
    background: rgba(255, 248, 225, 0.95);
    padding: 25px;
    border: 4px solid #D84315;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(216, 67, 21, 0.6);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}
.box h3 {
    color: #BF360C;
    font-weight: bold;
    border-bottom: 3px solid #FF6F00;
    display: inline-block;
    padding-bottom: 8px;
    font-size: 24px;
}
.box p {
    font-size: 18px;
    line-height: 1.8;
}
.footer {
    background-color: #4E342E;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 18px;
    font-weight: bold;
}
.animated { 
    animation: fadeIn 2s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}