body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
  }
  header {
    background-color: #ffcc00;
    padding: 15px 20px;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
  }
  .logo-container {
    display: flex;
    align-items: center;
  }
  .logo {
    height: 70px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    margin-right: 10px;
  }
  .company-name {
    flex: 1;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
  }
  .nav {
    position: relative;
    display: inline-block;
  }
  .nav-btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  .nav-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    right: 0;
  }
  .nav-content a {
    color: #333;
    padding: 10px;
    text-decoration: none;
    display: block;
    font-size: 14px;
  }
  .nav-content a:hover {
    background-color: #ddd;
  }
  .nav:hover .nav-content {
    display: block;
  }
  .header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .header-contact .phone {
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    font-weight: bold;
  }
  .header-contact .social-icons {
    display: flex;
    gap: 10px;
  }
  .header-contact .social-icons img {
    height: 24px;
  }
  @media (max-width: 768px) {
    .header-contact .phone {
      display: none;
    }
    .company-name {
      font-size: 20px;
      margin: 10px 0;
    }
    .logo {
      height: 60px;
    }
  }
  .about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .about-image {
    flex: 1;
    min-width: 300px;
    padding: 15px;
  }
  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .about-company {
    flex: 2;
    min-width: 300px;
    padding: 15px;
    text-align: left;
  }
  .about-company h2 {
    color: #333;
    margin-top: 0;
    font-size: 24px;
  }
  .about-company p {
    color: #555;
    line-height: 1.6;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
  }
  .slide {
    background: #fff;
    margin: 20px auto;
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    text-align: left;
  }
  .slide img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px;
  }
  .slide h2 {
    margin-top: 0;
    color: #333;
    font-size: 22px;
  }
  .slide p {
    color: #555;
    line-height: 1.6;
    margin: 8px 0;
  }
  .specs {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
  }
  .specs p {
    margin: 5px 0;
  }
  .order-btn {
    background-color: #ffcc00;
    color: #333;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .order-btn:hover {
    background-color: #e6b800;
  }
  .contact {
    background-color: #333;
    color: #fff;
    padding: 25px;
    font-size: 18px;
  }
  .contact p {
    margin: 10px 0;
  }

  .order-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  .order-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
  }
  .order-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
  .order-contacts, .order-delivery {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
  }
  .order-contacts h3, .order-delivery h3 {
    margin-top: 0;
    color: #333;
  }
  .order-contacts p, .order-delivery p {
    color: #555;
    line-height: 1.6;
  }
  .order-form {
    text-align: left;
    padding: 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
  }
  .form-group textarea {
    height: 100px;
    resize: vertical;
  }
  .submit-btn {
    background-color: #ffcc00;
    color: #333;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  .submit-btn:hover {
    background-color: #e6b800;
  }