
/* Container for the form */
.contact-form-container {
    padding: 20px 0;
}

.row {
    display: flex;
    justify-content: center;
}

.col-md-8 {
    width: 100%;
    max-width: 720px;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-body {
    padding: 25px;
}

.card-title {
    color: #2c3e50;
    margin-bottom: 20px;
}

.card-text {
    margin-bottom: 20px;
    color: #7f8c8d;
}


label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #34495e;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

/* Button Styling */
.btn-primary {
    background-color: #3498db;
    border: none;
    border-radius: 4px;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .col-md-8 {
        width: 100%;
        padding: 0 30px;
    }
}