* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.carousel-container {
    position: relative;
    height: 600px; /* Adjust as needed */
}


.carousel img {
    height: 600px;
    object-fit: cover;
}


.container {
    display: flex;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
}
.left-section, .right-section {
    flex: 1;
    min-width: 300px;
}
.left-section {
    padding-right: 20px;
    border-right: 1px solid #ddd;
}
.right-section {
    padding-left: 20px;
}
h2 {
    text-align: center;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #FF6600;
    color: black;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color:white;
}
.info {
    margin-bottom: 20px;
}
.info h3 {
    margin-bottom: 10px;
}
.social-icons a {
    margin-right: 10px;
    text-decoration: none;
    font-size: 20px;
    color: #FF6600;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .left-section {
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #ddd;
    }
    .right-section {
        padding-left: 0;
    }
}


footer {
    background-color:whitesmoke;
}

.footer-top {
    background-color: #e9ecef;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top .address, .footer-top .phones {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-top .address p, .footer-top .phones p {
    margin: 0;
    color: #555;
    font-weight: bolder;
    font-size: large;
}

.footer-top .icon {
    font-size: 24px;
    color: #ff6f00;
}

.footer-bottom {
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-section {
    margin: 10px;
}

.footer-section h3 {
    color: #ff6f00;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}
.footer-section p{
    color: #ff6f00;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.footer-section ul li a {
    text-decoration: none;
    color: #555;
}

.footer-section ul li a:hover {
    color: #ff6f00;
}

.footer-section p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }
}
/* General responsiveness */
    
@media (max-width: 768px) {
   
    .carousel-container {
        height: 400px; /* Reduce height on smaller screens */
    }
    .carousel img {
        height: 400px;
    }
   
    
}



/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}

.socials {
    list-style: none;
    display: flex;
    justify-content: center;
}

.socials li {
    margin: 0 10px;
}

.socials a {
    color: white;
    font-size: 20px;
}