
/* Styling for the buying process section */
.c-title {
    text-align: center; 
    padding: 20px; 
    background-color: white; 
}

/* Styling for the H2 tag */
.c-title h2 {
    font-size: 24px; 
    margin: 10px 0; 
    color: #b78727; 
}

/* Styling for the H1 tag */
.c-title h1 {
    font-size: 17px; 
    margin: 20px 0 50px; 
    color: #b78727; 
}

/* Style Sheet Headline For Buying Process End Here */




/* Contact Form Container */
.contact-container {
    display: flex;
    justify-content: space-between;
    background-color: white; 
    padding: 40px;
    max-width: 1000px;
    width: 100%;
    margin: 20px 0;
    margin-left: auto; 
    margin-right: auto; 
}

/* Contact Left - Form */
.contact-left {
    flex: 1;
    background-color: white;
    padding: 20px;
    margin-right: 20px;
}

/* Form Title */
.contact-left-title h2 {
    text-align: left;
    font-size: 18px;
    color: #b78727;
    margin-bottom: 20px;
    margin-left: 80px;
    font-family: 'Georgia', serif;
}

.contact-left-title hr {
    border: none;
    border-top: 2px solid #ff6b6b;
    width: 60px;
    margin: 10px auto;
}

.contact-right hr {
    border: none;
    border-top: 2px solid #ff6b6b;
    width: 100px;
    margin: 10px auto;
}

.location-section hr, .highlights-section hr {
    border: none;
    border-top: 2px solid #ff6b6b;
    width: 100%;
    margin: 10px auto;
}

/* Input Fields Styling */
.contact-inputs {
    width: 100%;
    max-width: 600px; 
    height: 45px; 
    padding: 10px; 
    margin-bottom: 20px; 
    border: 1px solid #ccc; 
    border-radius: 5px; 
    font-size: 14px; 
    color: #333; 
    background-color: white; 
}

textarea.contact-inputs {
    height: 100px;
    resize: vertical;
}

/* Style for input placeholders */
.contact-inputs::placeholder {
    font-family: 'Georgia', serif; 
    font-size: 14px; 
    font-style: italic; 
    color: #888888;
}

/* Focus style */
.contact-inputs:focus {
    border-color: #b78727; 
    outline: none;
    background-color: white; 
}

/* Button Styling */
button {
    background-color: #b78727;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif; 
}

button:hover {
    background-color: grey;
}

/* Contact Right - Info Section */
.contact-right {
    flex: 1;
    background-color: white;
    padding: 20px;
    margin-left: 20px;
}

/* Headlines Styling in Right Section */
.contact-right h2 {
    text-align: left;
    font-size: 18px;
    color: #b78727;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.additional-item h3 {
    font-size: 16px;
    color: #b78727;
    margin-bottom: 5px;
    font-family: 'Georgia', serif;
}

.additional-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-family: 'Georgia', serif;
}

.footer-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* New Section Container */
.section-container {
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 40px;
    max-width: 1000px;
    width: 100%;
    margin: 20px 0;
    margin-left: auto;
    margin-right: auto;
}

/* Our Location Section */
.location-section {
    flex: 1;
    background-color: white;
    padding: 20px;
    margin-right: 20px;
}

.location-section h3 {
    font-size: 18px;
    color: #b78727;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.location-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.map-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 250px; 
}

/* Company Highlights Section */
.highlights-section {
    flex: 1;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.highlights-section h3 {
    font-size: 18px;
    color: #b78727;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.highlights-section ul {
    list-style-type: disc; 
    font-family: 'Georgia', serif;
}

.highlights-section li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container, .section-container {
        flex-direction: column; 
        padding: 20px; 
    }

    .contact-left, .contact-right, .location-section, .highlights-section {
        margin-right: 0; 
        margin-left: 0; 
        width: 100%;
        margin-bottom: 20px; 
    }

    /* Adjust font sizes for better readability on smaller screens */
    .contact-left-title h2,
    .contact-right h2,
    .location-section h3,
    .highlights-section h3 {
        font-size: 16px; 
    }

    .additional-item h3 {
        font-size: 14px; 
    }

    .contact-inputs {
        width: 90%; 
    }

    button {
        width: 90%; 
    }

    .map-container iframe {
        height: 200px; 
    }
}
/* Contact Section Style Sheet Code Ended Here */
