h1, h2, h3 {  
    color: #00796b;  
    font-weight: 600;  
    text-align: center;  
    margin-bottom: 20px;  
}  

.froge-button {  
    background-color: #004d40;  
    color: #ffffff;  
    border: none;  
    padding: 10px 20px;  
    text-align: center;  
    text-decoration: none;  
    display: inline-block;  
    font-size: 16px;  
    margin: 4px 2px;  
    cursor: pointer;  
    border-radius: 8px;  
    transition: background-color 0.3s ease-in-out;  
}  

.froge-button:hover {  
    background-color: #00796b;  
}  

.froge-icon {  
    width: 32px;  
    height: 32px;  
    margin-right: 8px;  
}  

@media (max-width: 600px) {  
    h1, h2, h3 {  
        font-size: 1.2em;  
    }  

    .froge-button {  
        font-size: 14px;  
        padding: 8px 16px;  
    }  
}  

a {  
    color: #004d40;  
    text-decoration: none;  
    transition: color 0.3s ease-in-out;  
}  

a:hover {  
    color: #00796b;  
}