html, body {
    margin: 0;
    padding: 0;
    height: auto;
    font-family: "Arial", cursive, sans-serif;
    background-color: #f1ed97;
    scroll-behavior: smooth;
    position: relative;
    min-height: 100vh;
}

.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 100vh;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

.content-section:nth-child(odd) {
    background-color: #f1ed97;
}

.content-section:nth-child(even) {
    background-color: #e9dc5b;
}

@media (max-width: 768px) {
    .content-section {
        flex-direction: column !important;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .section0 .text-container,
    .section1 .text-container,
    .section3 .text-container,
    .section2 .text-container,
    .section4 .text-container,
    .section5 .text-container,
    .section6 .text-container,
    .section7 .text-container,
    .section8 .text-container {
        max-width: 100% !important;
        padding: 0 !important;
        order: 0 !important;
    }

    .section0 .image-container,
    .section1 .image-container,
    .section3 .image-container,
    .section2 .image-container,
    .section4 .image-container,
    .section5 .image-container,
    .section6 .image-container,
    .section7 .image-container,
    .section8 .image-container,
    .section9 .image-container,
    .scetion9 .imagetoo-container {
        max-width: 100% !important;
        max-height: none !important;
        order: 0 !important;
        margin-top: 1rem;
    }

    .image-container img {
        height: 350px !important;
    }

    
    .imagetoo-container img {
        height: 350px !important;
    }

    .additional-image-container img {
        height: 350px !important;
    }
}

.section1 .text-container,
.section3 .text-container,
.section5 .text-container,
.section7 .text-container {
    order: 2;
    padding: 0 2rem;
    max-width: 40%;
}

.section1 .image-container,
.section3 .image-container,
.section5 .image-container,
.section7 .image-container,
.section9 .image-container {
    order: 1;
    max-width: 40%;
}

.section2 .image-container,
.section4 .image-container,
.section6 .image-container,
.section8 .image-container,
.section0 .image-container,
.scetion9 .imagetoo-container {
    order: 2;
    max-width: 40%;
}

.section2 .text-container,
.section4 .text-container,
.section6 .text-container,
.section8 .text-container,
.section0 .text-container {
    order: 1;
    padding: 0 2rem;
    max-width: 40%;
}

.text-container h2 {
    margin-top: 0;
}

.text-container p {
    line-height: 1.5;
    font-size: 1.1rem;
}

.image-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    will-change: transform;
}

.imagetoo-container img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    will-change: transform;
}

.additional-image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    will-change: transform;
}

.footer-section {
    background-color: #78531b;
    color: #fcfbea;
    padding: 3rem 2rem;
    font-size: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content address {
    flex: 1 1 250px;
    margin: 0;
    line-height: 1.6;
    font-style: normal;
}

.footer-content ul li a {
    color: #fcfbea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}


.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff8dc;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #67461c;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.navbar-toggle {
    display: none;
    font-size: 2rem;
    color: #fcfbea;
    background: none;
    border: none;
    cursor: pointer;
    margin-right: 1rem;
    z-index: 101;
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.navbar-menu li {
    margin: 0 1rem;
}

.navbar-menu li a {
    color: #fcfbea;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
    color: #f1ed97;
}

@media (max-width: 1100px) {
    .navbar-toggle {
        display: none;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #67461c;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        margin: 1rem 0;
        text-align: center;
    }
}

body {
    padding-top: 50px;
}

.logo, .logo1 {
    max-height: 1.2em;
    max-width: 1.2em;
    vertical-align: middle;
    
}