
main{
display: flex;
justify-content: space-around;
gap: 30px;
box-shadow: none !important;
border: none !important;



}

/* Contact Section */
.contact-section {
width: 60%;
padding: 30px;
background: #EDE1D2;
border-radius: 12px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);

border: 3px solid #542700;

}

.contact-title {
font-size: 28px;
color: #542700;
margin-bottom: 10px;
font-weight: bold;
text-align: center;
}

.contact-description {
font-size: 16px;
color: #6B3E1E;
margin-bottom: 20px;
text-align: center;
}

.form-group-container {
display: flex;
flex-direction: column;
gap: 15px;
}

.form-label {
font-size: 14px;
font-weight: 600;
color: #542700;
display: block;
margin-bottom: 5px;
}

.form-input,
.form-textarea {
width: 100%;
padding: 12px;
font-size: 16px;
border: 2px solid #542700;
border-radius: 8px;
background: #fff5eb;

transition: 0.3s;
color: #542700;
}

.form-input:focus,
.form-textarea:focus {
border-color: #a35622;
background: #fff;
box-shadow: 0px 0px 8px rgba(163, 86, 34, 0.3);
outline: none;
}

.form-textarea {
height: 120px;
resize: none;
}

.form-submit {
background: #542700;
color: white;
font-size: 18px;
padding: 12px;
width: 100%;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
font-weight: bold;
}

.form-submit:hover {
background: #6B3E1E;
box-shadow: 0px 4px 10px rgba(107, 62, 30, 0.3);
}

/* Payment Section */
.payment-section {
width: 60%;

padding: 30px;
background: #FFF5EB;
border-radius: 12px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
border: 3px solid #542700;
text-align: center;

}

.payment-title {
font-size: 24px;
color: #542700;
font-weight: bold;
margin-bottom: 10px;
}

.payment-description {
font-size: 16px;
color: #6B3E1E;
margin-bottom: 20px;
text-align: center;

}

.qr-container {
display: flex;
justify-content: center;
margin-bottom: 20px;

}

.qr-code {
width: 15rem;

border-radius: 8px;
border: 2px solid #542700;
}

.bank-details {
text-align: left;
background: #EDE1D2;
padding: 15px;
border-radius: 8px;
font-size: 16px;
}

.bank-details h3 {
color: #542700;
margin-bottom: 10px;
font-weight: bold;
}

.bank-details p {
margin: 5px 0;
color: #542700;
font-weight: 500;
}

/* Responsive Design */
@media (max-width: 900px) {
.main-container {
flex-direction: column;
align-items: center;
}

.contact-section, .payment-section {
width: 90%;
}
}

