.contact-bg {
    background-image: url("/static/home/images/contact-background.df07a216962f.jpg");
    background-size: cover;
    min-height: 100vh;
    color: white;
    text-shadow: 1px 1px 3px black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    margin: 0;
}

.rate-box {
    background-color: rgba(18, 122, 98, 0.77);
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    flex: 1 1 300px;
}

.rate-box h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #9cd4ff;
    margin-bottom: 20px;
    text-align: center;
}

.rate-box p {
    font-size: 1.1rem;
    margin: 0 0 10px;
    text-align: center;
}

.rate-box h4{
    text-align: center;
}

.submit-btn {
    background-color: white;
    color: #127a62;
    border: 2px solid #127a62;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #127a62;
    color: white;
}