.kontakt-section {
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the image */
    position: relative; /* Position relative to allow absolute positioning inside */
    width: 100%; /* Full width */
    min-height: 500px; /* Minimum height - adjust as needed */

}
.kontakt-padding-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-container {
    position: relative;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    max-width: 612px; /* Adjust the width as needed */
}
.form-container::before {
    content: ""; /* Pseudo-elements require the content property */
    position: absolute;
    top: 0; /* Position at the top of the form-container */
    left: 0;
    right: 0;
    height: 5px; /* The thickness of the green line */
    background-color: #f3f0e9; /* The green color */
    border-radius: 5px 5px 0 0; /* Rounded corners on the top */
}

.contact-form-first-row{
    padding-top: 20px;
    padding-bottom: 2px;
}

.kontakt-background {
    background: #f3f0e9;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 15px;
}

.contact-form button{
    background-color: #f3f0e9;
    color: #000;
    border: none;
    cursor: pointer;
    width: 140px;
    height: 37px;
    border-radius: 15px;
    font-size: 1rem; /* Adjust as needed */
}

.contact-form .form-control, .contact-form .form-select {
    border-color: #fff;
    border-radius: 8px; /* Flat style as per the design */
    padding: 10px; /* Adjust as needed */
    background: #f6f6f8;
}

.contact-form .form-label {
    margin-bottom: 5px; /* Adjust as needed */
}

.contact-title{
    color: #52535a;
    font-size: 20px;
    margin-bottom: 20px;
}
.contact-description{
    font-size: 20px;
    color: white;
}

.company-contact-information {
    color: #52535a; /* Your text color */
    font-size: 1rem; /* Your desired font size */
    padding: 10px 0; /* Your desired padding */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.company-contact-information > i {
    color: #52535a;
    margin-right: 10px; /* Adjust icon spacing */
}
/* Add responsiveness */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
}
