body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Header */
header {
    background-color: #FFF7D7;
    padding: 10px;
    width: 100%;
}

.header-container {
    display: flex;
    align-items: center;
    width: inherit;
}

/* Hamburger Menu Icon */
.menu-icon {
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    color: #F3C512;
}

.menu-icon:hover {
    color: #d4a20a;
}

.Icon{
    width:30px;
    padding: 10px;
}

/* Search Icon */
.search-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    color: #F3C512;
}

.search-icon:hover {
    color: #d4a20a;
}

/* Search Bar (Hidden by Default) */
.search-bar {
    display: flex;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.hidden {
    display: none;
}

.search-bar input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 250px;
   padding-right: 0;
}

.search-bar  button {
    padding: 8px 16px;
    background-color: #F3C512;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.search-bar button:hover {
    background-color: #d4a20a;
}

.logo {
    margin-left: auto;
    margin-right: 20px;
}

.logo img {
    height: 3.5em;
    width: auto;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: -280px; /* Hidden off-screen */
    height: 100%;
    width: 250px;
    background-color: #ffffff;
    padding: 10px;
    transition: left 0.3s ease-in-out;
    z-index: 1000;
    border:#FFF7D7 solid;
}

.navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 50px 0 0 0;
}

.navigation ul li {
    margin: 20px 0;
}

.navigation ul li a {
    color: #F3C512;
    text-decoration: none;
    font-weight: bold;
}

.navigation ul li a:hover {
    text-decoration: underline;
}

.navigation.navigation-open {
    left: 0; 
}
.close-icon {
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #F3C512;
}

.close-icon:hover {
    color: #d4a20a;
}
.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-left {
    flex: 1;

}

.text-left h2 {
    font-size: 30px;
    color: #F3C512;
    margin-left: 0%;
    padding-left: 0%;
}
.text-left h3 {
    font-size: 28px;
    color: #F3C512;
    margin-left: 0%;
    padding-left:0%;
}

.text-left p {
    font-size: 1.1em;
    margin-bottom: 1em;
    line-height: 1.6;
    font-weight: 500;
}

.image-right {
    max-width: 500px;
    justify-self: center;
}

.image-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    justify-self: center;
}



/* Footer */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px;
}

@media (max-width: 883px) {
    
    .main-content {
    padding: 20px;
    background-color: rgb(255, 255, 255);
    max-width: 900px;
    padding-bottom: 70%;
    }

    .main-content h2 {
        font-size: 24px;
    }

    .main-content h3 {
        font-size: 20px;
    }
    .header-container {
        flex-direction: row; 
        justify-content: space-between;
    }
    
    .logo {
        margin-left: auto;
        margin-right: 20px;
    }
    
    .logo img {
        height: 3.5em;
        width: auto;
    }
    .search-bar input[type="text"] {
        width: 100%;
        margin-left: -4px;
        width: 58%;
    }
    .search-bar {
        margin-left: -4px;
    }
    .search-bar button {
        padding: 9px 9px;
    }
    .Icon {
        margin-left: -10px;
      }
    .image-right img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-top: 8%
     }
}