* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

.width-100 {
    width: 100%;
}

header {
    background-color: rgb(0 0 0 / 16%);
    padding: 10px 0px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
  
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
  
.logo img {
    height: 50px;
    width: 60px;
    border-radius: 15px;
}
  
.brandname {
    font-size: 1.5rem;
    font-weight: bold;
}
  
.navlinks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
  
.navlinks a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
  
.navlinks a:hover {
    color: #ffcc00;
}
  
.order-button {
    background-color: #ffcc00;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
    transition: background-color 0.3s ease;
}
  
.order-button:hover {
    background-color: #e6b800;
}
body {
    background: linear-gradient(to left, #193576, #012987, #313181);
}


.about-hero {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  
  .about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .about-hero p {
    font-size: 1.2rem;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
  }
  
  .about-img {
    flex: 1 1 40%;
  }
  
  .about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }
  
  .about-text {
    flex: 1 1 55%;
  }
  
  .about-text h2 {
    font-size: 1.8rem;
    color: aliceblue;
    margin: 20px 0 10px;
    color: aliceblue;
  }
  
  .about-text p,
  .about-text ul {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: aliceblue;
  }
  
  .about-text ul {
    list-style: disc inside;
    color: aliceblue;
  }
  
  .about-footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: aliceblue;
    font-size: 0.9rem;
  }
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .footer {
        padding: 10px;
        width: 100%;
        margin-top: 10px;
    }

    footer {
        background-color: #11285d !important;
        border-top: 1px solid #0a1b41;
        padding: 10px !important;
        margin-top: 20px !important;
    }
}