 /* Reset some default styles */
 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: Arial, sans-serif;
     line-height: 1.6;
     color: #333;
 }

 /* Header styles */
 header {
     background-color: #fff;
     padding: 10px 20px;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 999;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 70px;
 }

 .header-logo img {
     height: 40px;
 }

 .header-nav ul {
     list-style-type: none;
     margin: 0;
     padding: 0;
     display: flex;
 }

 .header-nav li {
     margin-left: 10px;
 }

 .header-nav a {
     display: block;
     padding: 10px 20px;
     text-decoration: none;
     color: #333;
 }

 /* Hero section styles */
 .hero {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
     align-items: center;
     padding: 80px 40px;
     background-image: url('./assets/hero-section-one.jpg');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     box-sizing: border-box;
     height: 85vh;
 }

 .hero-text {
     color: #fff;
 }

 .hero-heading {
     font-size: 42px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 .hero-subtext {
     font-size: 20px;
     font-weight: normal;
 }

 .hero-image {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
 }

 /* About section styles */
 .products {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     text-align: center;
     padding: 40px;
     background-color: #f9f9f9;
 }

 .products-item {
     padding: 20px;
     background-color: #fff;
     border-radius: 8px;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
 }

 .products-image {
     display: block;
     max-width: 100%;
     height: auto;
     margin: 0 auto;
     border-radius: 50%;
 }

 .products-heading {
     font-size: 28px;
     font-weight: bold;
     margin-top: 30px;
     margin-bottom: 20px;
 }

 /* Info section styles */
 .info {
     text-align: center;
     padding: 80px 40px;
     background-color: #f2f2f2;
 }

 .info-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 40px;
 }

 .info-card {
     padding: 20px;
     background-color: #fff;
     border-radius: 8px;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
 }

 .info-card h3 {
     font-size: 24px;
     margin-bottom: 10px;
 }

 .info-card p {
     font-size: 16px;
     line-height: 1.5;
     color: #555;
 }

 .info-image {
     display: block;
     max-width: 100%;
     height: auto;
     margin: 0 auto;
     border-radius: 50%;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
 }

 .info-heading {
     font-size: 28px;
     font-weight: bold;
     margin-top: 30px;
     margin-bottom: 20px;
 }

 .info-list {
     list-style-type: none;
     padding: 0;
     margin-top: 20px;
     display: flex;
     justify-content: center;
 }

 .info-list-item {
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 10px;
     width: 100px;
     height: 100px;
     background-color: #f1f1f1;
     border-radius: 50%;
     box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
 }

 .info-list-item-text {
     font-size: 14px;
     text-align: center;
 }

 /* Contact section styles */
 .contact {
     padding: 80px 40px;
     text-align: center;
     background-color: #f1f1f1;
 }

 .contact-heading {
     font-size: 36px;
     font-weight: bold;
     margin-bottom: 20px;
 }

 .contact-form {
     max-width: 500px;
     margin: 0 auto;
 }

 .contact-input {
     display: block;
     width: 100%;
     padding: 10px;
     margin-bottom: 20px;
     border-radius: 4px;
     border: 1px solid #ccc;
 }

 .contact-textarea {
     display: block;
     width: 100%;
     padding: 10px;
     margin-bottom: 20px;
     border-radius: 4px;
     border: 1px solid #ccc;
 }

 .contact-button {
     display: block;
     width: 100%;
     padding: 12px 24px;
     background-color: #4CAF50;
     color: #fff;
     text-decoration: none;
     border-radius: 4px;
     font-size: 16px;
     transition: background-color 0.3s ease;
 }

 .contact-button:hover {
     background-color: #45a049;
 }

 /* Footer Section */

 .footer {
     background-color: rgb(108, 170, 168);
     padding: 20px;
     text-align: center;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-text {
     color: #fff;
     font-size: 14px;
     margin-bottom: 10px;
 }

 .footer-links {
     list-style-type: none;
     margin: 0;
     padding: 0;
 }

 .footer-links li {
     margin-right: 10px;
 }

 .footer-links a {
     color: #fff;
     text-decoration: none;
     font-size: 14px;
 }

 .footer-links a:hover {
     text-decoration: underline;
 }

 /* Responsive styles */
 @media screen and (max-width: 768px) {
     .header-nav {
         display: none;
     }

     .hero {
         grid-template-columns: 1fr;
         padding: 40px;
     }

     .hero-heading {
         font-size: 32px;
     }

     .hero-subtext {
         font-size: 16px;
     }

     .products {
         grid-template-columns: 1fr;
         padding: 20px;
     }

     .info {
         padding: 40px;
     }

     .info-list-item {
         width: 70px;
         height: 70px;
     }

     .info-list-item-text {
         font-size: 12px;
     }

     .footer {
         padding: 10px;
     }

     .footer-text,
     .footer-links {
         font-size: 12px;
     }
 }