*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 50px;
}
.logo a{
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li{
    margin-right: 15px;
}
.nav-links li:last-child{
    margin-right: 0px;
}
.nav-links li a{
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    font-weight: bold;
    padding: 0px 5px;
    transition: 0.3s ease;
}
.nav-links li a:hover{
    color: #ffc107;
}
.nav-links li .active{
    color: #ffc107;
}
.moble-menu {
    display: none;
    cursor: pointer;
}
.moble-menu span{
    display: flex;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
}
.order-button {
    padding: 10px 20px;
    background-color: #ffc107;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}
.order-button:hover {
    background-color: #d51341;
}
.container {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
}
.title {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 70px;
}
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.image img {
    width: 100%;
    transition: transform 0.3s ease;
}
.image:hover img {
    transform: scale(1.1);
}
.image {
    flex: 1;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 10px;
}
.content {
    flex: 1;
    margin-left: 20px;
}
.content p{
    font-size: 17px;
    line-height: 1.6;
}
.readmore {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #4caf50;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.s ease;
}
.readmore:hover {
    background-color: #ccbb25;
}
@media screen and (max-width: 768px) {
    .navbar{
        padding: 15px 30px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #444;
        padding:20px 25px ;
        margin-top: 8px;
    }
    .nav-links li{
        padding: 15px 0px;
    }
    .moble-menu {
        display: block;
    }
    .nav-active {
        display: block;
    }
    .about-container {
        flex-direction : column;
    }
    .image, .content{
        margin: 0;
        margin-bottom: 20px;
    }
    .title {
        font-size: 38px;
        margin-bottom: 50px;
    }
}