body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 20px;
}

.form-container {
    max-width: 800px;
}

.form-container h2 {
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ccc;
    font-size: 0.75rem;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 1rem;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 5px rgba(0,124,186,0.3);
}

.submit-button {
    background-color: #d4135a;
    border: 2px solid #d4135a;
    color: white;
    padding: 10px 2rem;
    border-radius: 1rem;
    cursor: pointer;
    font-weight: bold;
}

.submit-button:hover {
    background-color: #c1124b;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: #222222;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 800px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.popup-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
    color: white;
}

.popup-content button {
    background-color: #d4135a;
    border: 2px solid #d4135a;
    color: white;
    padding: 10px 2rem;
    border-radius: 1rem;
    cursor: pointer;
    font-weight: bold;
}

.popup-content button:hover {
    background-color: #c1124b;
}

.consultation-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.consultation-button:hover {
    background-color: #218838;
}

.close-button {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.close-button:hover {
    background-color: #545b62;
}

/* Responsive design */
@media (max-width: 768px) {
    .form-container {
        margin: 10px;
        padding: 15px;
    }
    
    .popup-content {
        margin: 10px;
        padding: 15px;
    }
    
    .consultation-button,
    .close-button {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
}
