/* banner */
html {
    scroll-behavior: smooth;
}

* {
    padding: 0;
    margin: auto;
    /* box-sizing: border-box; */
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light grey background */
}


.video-container {
    padding-top: 80px;
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    padding-top: -20px;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.content {
    position: relative;
    z-index: 1;
    color: black;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    font-size: 20px;
    color: #99582a;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #432818;
    color: black;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    margin-top: 20px;
}

.cta-button:hover {
    background: transparent;
    border: 1px solid #432818;
    color: black;
    font-family:sans-serif;
  
}
/* banner */
/* Style the menu bar for desktop screens */
.sign-up-button {
    background-color: #432818;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.sign-up-button:hover {
    background-color: #ffe6c7;
    color: #432818;
}
.menu-bar {
    background: #99582a;
    width: 100%;
    position: fixed; /* Keeps the navbar fixed on scroll */
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures it stays on top */
    display: flex;
    justify-content: space-between; /* Space between logo and navigation */
    align-items: center;
    padding: 5px 20px; /* Adds some padding around the content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Style the logo */
.logo {
    height: 80px;
    max-width: 100%;
    
}

/* Style the navigation */
.navigation {
    display: flex;
    list-style: none;
}

.navigation ul {
    display: flex;
    list-style: none;
}

.navigation li {
    margin-left: 20px; /* Space between the navigation items */
}

.navigation li a {
    color: #ffffff; /* White text color */
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 10px 15px; /* Padding inside each link */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.navigation li a:hover {
    background-color: #432818; /* Darker background on hover */
    color: #ffd700; /* Gold text color on hover */
    border-radius: 5px; /* Rounded corners on hover */
}

.navigation-img {
    height: 18px;
    margin-right: 8px; /* Space between icon and text */
}

/* Style the burger menu icon */
.burger-menu {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #ffffff;
}

/* Style the close menu icon */
.close-menu {
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px; /* Positioned on the right inside the sliding menu */
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navigation {
        position: fixed;
        top: 0;
        right: -250px; /* Hide the menu off-screen initially */
        height: 100%;
        width: 250px;
        background-color: #99582a;
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Align items to the right */
        transition: right 0.3s ease;
        padding-top: 60px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    .navigation ul {
        flex-direction: column;
        width: 100%;
    }

    .navigation li {
        margin: 15px 0;
    }

    .burger-menu {
        display: block;
    }

    .menu-bar {
        justify-content: space-between; /* Ensure space between logo and burger menu */
    }

    /* Show the menu when active */
    .navigation.active {
        right: 0; /* Slide the menu in from the right */
    }
}
/* manubar */

/* footer */
/* General Footer Styling */
.foter {
    background: #a47148;
    padding: 20px 0;
    color: #432818;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #432818;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff; /* Change color on hover */
}

.social-links {
    display: flex;
    padding: 0;
}

.social-links li {
    margin-right: 15px;
}

.social-icon {
    height: 24px; /* Adjust the size of social icons */
    width: 24px;
    vertical-align: middle;
}

/* Responsive Design */
.fo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fo-row {
    display: flex;
    flex-wrap: wrap;
}

.fo-col-3 {
    flex: 1;
    min-width: 200px; /* Ensures columns stack on small screens */
    padding: 0 15px;
}
.fo-top{
    padding-top: -20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .fo-row {
        flex-direction: column;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        padding: 0;
    }

    .social-links li {
        margin-right: 10px;
    }
}

/* footer */

/* grid syste */
.col-1{width: 8.33%;}
.col-2{width: 16.66%;}
.col-3{width: 25%;}
.col-4{width: 33.33%;}
.col-5{width: 41.66%;}
.col-6{width: 50%;}
.col-7{width: 58.33%;}
.col-8{width: 66.66%;}
.col-9{width: 75%;}
.col-10{width: 83.33%;}
.col-11{width: 91.66%;}
.col-12{width: 100%;}

.row::after{
    content: "";
    clear: both;
    display: table;
}
[class*="col-"]{
    float: left;
    text-align: center;
    font-size: 20px;
}
.container{
    padding-right: 10% ;
    padding-left: 10%;
    margin-right: auto;
    margin-left: auto ;
    

}
/* grid syste */

@media(max-width: 768px){
    .container{
        width: 750px;
    }
    /* .text-responsive{
        height: auto;
        max-width: 100%;
        width: 100%;
        display: flex;
    } */
    *{
        font-size: 100%;
        height: auto;
        max-width: 100%;
    }
    
}
@media(max-width: 992px){
    .container{
        width: 970px;
    }
}
@media(max-width: 1200px){
    .container{
        width: 1170px;
    }
}

/* About */
.about-Us h1{
    color: #432818;
    font-size: 40px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
}
.about-Us p{
    font-size: 18px;
    color: #5e503f;
    text-align:justify;
}
.about-Us ul{
    list-style:none;
}
/* About */

/* projects */
.project h1,h3,h2,h4,h5{
    color: #432818;
}
.project h1{
    font-size: 40px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
}
.project p, li{
    color: #5e503f ;
}
.slider {
    position: relative;
    width: 800px;
    height: 350px; 
    border: 10px #99582a solid;
    border-radius: 15px;
    /* box-shadow: #99582a; */
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
  }
  
  .prev {
    left: 20px;

  }
  
  .next {
    right: 20px;
  }
  
  .active {
    display: block;
  }
.projects-icon{
    height: 25px;
}
.fur-imag{
    top: 15px;
    height: 240px;
    width: 250px;
    padding: 0 auto;
}
.fur-li{
    list-style: none;
    text-align: left;
    padding-left: 100px;
}
  
/* projects */

/* properties */
.propertices h1{
    color: #432818;
    font-size: 40px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-style: italic;
}
.propertices h2,h3,h4,h5,h6{
    color: #432818;
} 
.propertices p,li{
    color: #5e503f;
}

.pro-image{
    height: 250px;
    width: 400px;
}
.pro-li{
    list-style: none;
}
.pro-button{
    display: inline-block;
    padding: 10px 10px;
    background-color: #99582a;
    color: black;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    margin-top: 20px;
    
}
.pro-button:hover {
    background: transparent;
    border: 1px solid #432818;
    color: black;
    font-family:sans-serif;
  }
.Luxury{
    width: 100%;
    height: 400px;
}
.main-p-imag{
    height: 350px;
    width: 100%
}
.lux-li{
    list-style: none;
    text-align: left;
}
figure img{
    display: inline;
}
.li-image li img{
    height: 150px;
    }
.all-center, figcaption{
    padding: 0 5%;
    margin: 0px 7px;
    text-align: center;
}

/* Styling the map section */
.map {
    width: 100%; /* Full width of the container */
    height: 400px; /* Set a fixed height for the map */
    margin: 20px 0; /* Add some spacing above and below the map */
    border: 2px solid #ddd; /* Light grey border */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensure content inside stays within the rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map {
        height: 300px; /* Reduce height on smaller screens */
    }
}

@media (max-width: 480px) {
    .map {
        height: 250px; /* Further reduce height on very small screens */
    }
}


/* Styling the contact agent section */
.contact-agent {
    background-color: #bfd7ea; /* Light grey background */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 800px;
    margin: 20px auto; /* Center the section */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Styling the heading */
.contact-agent h3 {
    font-size: 25px;
    color: #003049;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

/* Styling the paragraph text */
.contact-agent p {
    font-size: 16px;
    color:#003049;
    margin: 8px 0;
}

/* Highlighting strong elements within the paragraph */
.contact-agent p strong {
    color: #003049 ; /* Blue color for emphasis */
}

/* Styling the contact button */
.contact-agent .contact-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #003049; /* Bootstrap blue color */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition */
}

/* Button hover effect */
.contact-agent .contact-button:hover {
    background-color:#0077b6; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .contact-agent {
        max-width: 100%; /* Full width for smaller screens */
        padding: 15px;
    }

    .contact-agent h3 {
        font-size: 20px;
    }

    .contact-agent p {
        font-size: 14px;
    }

    .contact-agent .contact-button {
        font-size: 14px;
        padding: 10px 16px;
    }
}


/* General styling for the search section */
#property-search {
    background-color: #fdf0d5; /* Light grey background */
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto; /* Center the section */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

/* Styling the heading */
#property-search h2 {
    text-align: center;
    color: #333; /* Darker text color */
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Styling the form */
#property-search form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Styling the input field */
#property-search input[type="text"] {
    width: 80%; /* Make input field take most of the form's width */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 5px;
    font-size: 16px;
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1); /* Subtle inner shadow */
}

/* Styling the select dropdown */
#property-search select {
    width: 50%; /* Half of the form's width */
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
}

/* Styling the submit button */
#property-search button[type="submit"] {
    padding: 12px 20px;
    background-color: #780000; /* Bootstrap blue color */
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth color transition */
}

/* Button hover effect */
#property-search button[type="submit"]:hover {
    background-color: #c1121f; /* Darker blue on hover */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    #property-search input[type="text"],
    #property-search select {
        width: 100%; /* Full width for smaller screens */
    }
}

/* Styling the CTA section */
#cta-section {
    background-color: #e5e5e5; /* Blue background */
    color: #fff; /* White text color */
    text-align: center; /* Center text */
    padding: 30px 20px; /* Padding around the content */
    border-radius: 8px; /* Rounded corners */
    margin: 40px auto; /* Center section with space above and below */
    max-width: 80%; /* Limit the width of the section */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Styling the heading */
#cta-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
}

/* Styling the paragraph */
#cta-section p {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Styling the CTA button */
#cta-section .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #bb9457; /* Yellow/gold background for the button */
    color: #ffe6a7; /* Dark text color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition */
}

/* Button hover effect */
#cta-section .cta-button:hover {
    background-color:#432818; /* Darker yellow on hover */
    transform: translatex(-4px -4px); /* Slight lift effect */
}

/* Responsive adjustments */
@media (max-width: 600px) {
    #cta-section {
        padding: 20px 15px;
    }

    #cta-section h3 {
        font-size: 20px;
    }

    #cta-section p {
        font-size: 16px;
    }

    #cta-section .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}


/* properties */


/* Hero Section */
.hero-section {
    width: 100%;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Image */
.hero-section img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 80%;
}

/* Hero Heading */
.hero-content h1 {
    font-size: 2.5rem; /* 40px */
    color: #432818;
    margin-bottom: 20px;
}

/* Hero Paragraph */
.hero-content p {
    font-size: 1.25rem; /* 20px */
    color: #6b4f32;
    margin-bottom: 30px;
}

/* Call to Action Button */
.cta-button {
    background-color: #432818;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.125rem; /* 18px */
    border-radius: 5px;
}

/* Responsive Styles */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem; /* 32px */
    }

    .hero-content p {
        font-size: 1rem; /* 16px */
    }

    .cta-button {
        font-size: 1rem; /* 16px */
        padding: 8px 16px;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 480px) {
    .hero-section {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 1.5rem; /* 24px */
    }

    .hero-content p {
        font-size: 0.875rem; /* 14px */
    }

    .cta-button {
        font-size: 0.875rem; /* 14px */
        padding: 8px 12px;
    }
}


/* Services Overview Section */
.services-overview {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.services-overview h2 {
    font-size: 2.5rem;
    color: #432818;
    margin-bottom: 20px;
}

.services-overview p {
    font-size: 1.2rem;
    color: #6b4f32;
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    width: 100px;
    height: 80px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #99582a;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #6b4f32;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #432818;
    margin-bottom: 40px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.feature-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    text-align: center;
}
.feature-item:hover{
    transform: translateY(-3px);
    transition: 0.3s;
}

.feature-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #99582a;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
}

/* Responsive Styles */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
    .feature-item {
        max-width: 45%;
    }
}

/* Small Screens (Mobile) */
@media (max-width: 480px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        max-width: 100%;
    }

    .why-choose-us h2 {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1.25rem;
    }

    .feature-item p {
        font-size: 0.875rem;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #432818;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.testimonial-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-item h3 {
    font-size: 1.25rem;
    color: #99582a;
}

/* Call to Action Section */
.ctaa-section {
    padding: 50px 20px;
    background-color: #99582a;
    color: white;
    text-align: center;
}

.ctaa-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ctaa-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.ctaa-button {
    background-color: #432818;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ctaa-button:hover {
    background-color: #99582a;
    color: white;
}

/* Contact Information Section */
.contact-info {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #432818;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.5rem;
    color: #99582a;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
}

.contact-item a {
    color: #99582a;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-item, .contact-item {
        max-width: 100%;
    }
    
    .testimonial-container, .contact-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .testimonials h2, .cta-section h2, .contact-info h2 {
        font-size: 2rem;
    }

    .testimonial-item p, .cta-section p, .contact-item p {
        font-size: 0.875rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


/* services */



/* key Word Class */
.responsive{
    max-width: 100%;
    height: auto;
}
.imag-sixe{
    height: 25px;
}
.copyright{
    text-align: center;
    background: black;
    color: red;
    padding: 1px;
}
.text-responsive{
    font-size: 100%;
    height: auto;
    max-width: 100%;}
.heading{
    text-align: center;
}

/* key Word Class */


/* contactus */

/* Hero Section */
.heroo-section {
    padding-top: 100px;
    background: #6b4f32;
    width: 100%;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.heroo-section h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.heroo-section p {
    font-size: 20px;
}

/* Contact Information Section */
.contact-infoo {
    background-color: #584531;
    padding: 50px 0;
    text-align: center;
}

.contact-itemo {
    margin-bottom: 30px;
}

.contact-itemo h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.contact-itemo p, .contact-itemo a {
    font-size: 18px;
    color: #ffe6c7;
}

/* Contact Form Section */
.contact-formo {
    background-color: #ffffff;
    padding: 50px 50px 50px 50px;
    text-align: center;
}

.contact-formo h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-groupo {
    margin-bottom: 15px;
    text-align: left;
}

.form-groupo label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #432818;
}

.form-groupo input, .form-groupo textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-buttono {
    background-color: #99582a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.submit-buttono:hover {
    background-color: #432818;
}

/* Map Section */
.map-section {
    background-color: #f4f4f4;
    padding: 50px 0;
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.map iframe {
    width: 100%;
    border: 0;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #432818;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .hero-section {
        padding: 70px 0;
    }

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section p {
        font-size: 18px;
    }

    .contact-form h2, .map-section h2 {
        font-size: 28px;
    }

    .contact-item h3 {
        font-size: 20px;
    }

    .contact-item p, .contact-item a {
        font-size: 16px;
    }

    .form-group label, .form-group input, .form-group textarea {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .contact-form h2, .map-section h2 {
        font-size: 24px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p, .contact-item a {
        font-size: 14px;
    }

    .form-group label, .form-group input, .form-group textarea {
        font-size: 12px;
    }

    .submit-button {
        font-size: 16px;
    }
}