body {
     font-family: 'Amiri', Arial, sans-serif; 
    line-height: 1.6;
    color: hsl(0, 0%, 20%); 
    margin: 0;
    padding: 0;
    background-color: hsl(0, 0%, 96%); 
}

h1 {
    color: hsl(150, 100%, 20%); 
    background-color: hsl(0, 0%, 100%); 
    text-align: center;
    max-width: 800px;
    margin: 20px auto 30px auto;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,102,51,0.1); 
    border-bottom: 3px solid hsl(46, 65%, 52%); 
}

.travel-tip {
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(0,102,51,0.1); 
    border-left: 4px solid hsl(208, 79%, 51%); 
    margin: 0 auto 25px auto;
    transition: transform 0.3s, box-shadow 0.3s;
}

.travel-tip:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,102,51,0.2);
}

.tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tip-icon {
    font-size: 24px;
    margin-right: 15px;
    color: hsl(46, 65%, 52%);
}

.tip-title {
    font-weight: bold;
    font-size: 1.2em;
    color: hsl(150, 100%, 20%); 
}

.transport-option {
    margin: 12px 0;
    padding-left: 15px;
    border-left: 2px solid hsl(46, 65%, 52%); 
    transition: all 0.3s;
}

.transport-option:hover {
    background-color: rgba(212, 175, 55, 0.1); 
    padding-left: 20px;
}

@media (max-width: 600px) {
   
    h1 {
        font-size: 1.5em;
        margin: 10px auto 20px auto;
    }
    
    .travel-tip {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .tip-icon {
        font-size: 20px;
        margin-right: 10px;
    }
}