* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.babeprivacy h1 {
    margin-top: 20px;
    font-size: 45px;
    margin-bottom: 0;
}

.babeprivacy h2 {
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.babeprivacy p {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
    color: rgba(0, 0, 0, 80%);
}



.contact-form h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: #4472c4;
    box-shadow: 0 0 5px rgba(68, 114, 196,0.5);
}

.form-group label {
    font-size: 17px;
    color: #333;
    margin-bottom: 9px;
}

.send-btn {
    width: 100%;
    background-color: #4472c4;
    border: none;
    height: 50px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background-color: #0056b3;
}

.send-btn:active {
    background-color: #004085;
}