/* Reset and general styles */
body, h1, h2, h3, p {
	margin: 0;
	padding: 0;
  }
  
  body {
	font-family: "Arial", sans-serif;
	background-color: #f8f8f8;
	color: #333;
  }
  
  a {
	text-decoration: none;
	color: #007bff;
  }


   @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");
      *,
      *::before,
      *::after {
          box-sizing: border-box;
          line-height: 1.5em;
      }

      html {
          font-size: 16px;
          scroll-behavior: smooth;
          -webkit-text-size-adjust: 100%;
      }

      body {
          margin: 0;
          font-family: "Open Sans", sans-serif;
          background-color: #f7f7f7;
      }

      header {
          background-color: #ffffff;
          box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
          padding: 10px 20px;
      }
      header .wrapper {
          max-width: 1000px;
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: space-between;
      }
      header .logo {
          width: 13rem;
          display: flex;
      }
      header .logo img {
          width: 50px;
          display: block;
      }

      .navbar {
          position: fixed;
          top: 0;
          left: 100%;
          margin: 0;
          width: 100%;
          height: 100%;
          background-color: white;
          padding: 20px;
          transition: left 0.3s;
      }

      .navbar.show {
          left: 0 !important;
      }

      .hide-scroll {
          overflow: hidden;
      }

      .navbar ul {
          all: unset;
          list-style-type: none;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 25px;
      }
      .navbar ul a {
          all: unset;
          color: #444444;
          text-transform: uppercase;
          cursor: pointer;
          font-weight: bold;
          font-size: 28px;
      }
      .navbar ul a:hover {
          color: #111111;
          text-decoration: underline overline;
          text-decoration-thickness: 3px;
      }

      .close-nav {
          text-align: right;
          margin-bottom: 20px;
      }
      .close-nav button {
          all: unset;
          background: #f7f7f7;
          font-size: 42px;
          cursor: pointer;
          border: 1px solid rgba(0, 0, 0, 0.2);
          padding: 15px;
          border-radius: 3px;
          color: #444444;
      }
      .close-nav button:hover {
          color: #222222;
          background: white;
      }

      .menu-bar button {
          border: 1px solid rgba(0, 0, 0, 0.1);
          background: #f7f7f7;
          height: 50px;
          width: 50px;
          padding: 5px 10px;
          cursor: pointer;
          border-radius: 3px;
      }
      .menu-bar i {
          display: block;
          border-top: 3px solid #444444;
          border-bottom: 3px solid #444444;
      }
      .menu-bar i::after {
          display: block;
          content: "";
          border-top: 3px solid #444444;
          margin: 6px 0;
      }
      .menu-bar button:hover {
          background: white;
      }
      .menu-bar button:hover i {
          border-color: #222222;
      }

      @media (min-width: 550px) {
          .navbar {
              all: unset;
              display: block;
          }
          .navbar ul {
              flex-direction: row;
              gap: 20px;
          }
          .navbar ul a {
              font-size: inherit;
          }
          .close-nav,
          .menu-bar {
              display: none;
          }
      }
  
  /* Header styles 
  .tw-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	background-color: #fff;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .tw-header .tw-logo img {
	width: 40px;
	height: 40px;
  }
  
  /* Mobile navigation button 
  .tw-header .tw-nav .tw-nav-button {
	display: none;
	/* Hide by default on PC 
  }
  
  /* Navigation styles 
  .tw-header .tw-nav ul {
	list-style: none;
	display: flex;
	align-items: flex-end;
  }
  
  .tw-header .tw-nav ul li {
	margin-top: 0.5rem;
  }
  
  .tw-header .tw-nav ul li a {
	font-weight: bold;
  }
  
  @media (min-width: 768px) {
	/* Adjust navigation styles for larger screens 
	.tw-header .tw-nav ul {
	  flex-direction: row;
	  margin-top: 0;
	}
  
	.tw-header .tw-nav ul li {
	  margin-top: 0;
	  margin-left: 1rem;
	}
  }*/
  
  /* Hero section styles */
  .tw-hero {
	padding: 4rem 2rem;
	text-align: center;
	background-color: #007bff;
	color: #fff;
  }
  
  .tw-hero h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
  }
  
  .tw-hero p {
	font-size: 1.2rem;
	opacity: 0.8;
	margin-bottom: 2rem;
  }
  
  .tw-hero .tw-cta-button {
	display: inline-block;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	background-color: #fff;
	color: #0069da;
	border-radius: 4px;
	transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .tw-hero .tw-cta-button:hover {
	background-color: #0862c4d0;
	color: #fff;
  }
  
  /* Featured tool section styles */
  .tw-featured {
	padding: 4rem 2rem;
	text-align: center;
	background: white;
  }
  
  .tw-featured h2 {
	font-size: 2rem;
	margin: 2rem;
	margin-bottom: 2rem;
  }
  
  .tw-featured .tw-featured-tool {
	display: flex;
	flex-direction: column;
	max-width: 100%;
	align-items: center;
  }
  
  .tw-featured .tw-featured-tool img {
	max-width: 80%;
	height: auto;
	
  }
  
  .tw-featured .tw-featured-tool .tw-featured-content {
	padding: 2rem;
	text-align: center;
  }
  
  .tw-featured .tw-featured-tool .tw-featured-content h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
  }
  
  .tw-featured .tw-featured-tool .tw-featured-content p {
	font-size: 1.1rem;
	opacity: 0.8;
	margin-bottom: 1.5rem;
  }
  
  .tw-featured .tw-featured-tool .tw-featured-content .tw-cta-button {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	font-size: 1rem;
	background-color: #007bff;
	color: #fff;
	border-radius: 4px;
	transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .tw-featured .tw-featured-tool .tw-featured-content .tw-cta-button:hover {
	background-color: #0056b3;
  }
  

  
  /* Categories section styles */
  .tw-categories {
	padding: 4rem 2rem;
	text-align: center;
  }
  
  .tw-categories h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
  }
  
  .tw-categories .tw-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	align-items: center;
	justify-content: center;
  }
  
  .tw-categories .tw-category-grid .tw-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .tw-categories .tw-category-grid .tw-category-card img {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
  }
  
  .tw-categories .tw-category-grid .tw-category-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
  }
  
  /* Blog section styles */
  .tw-blog {
	padding: 4rem 2rem;
	text-align: center;
  }
  
  .tw-blog h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
  }
  
  .tw-blog .tw-blog-posts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	align-items: center;
	justify-content: center;
  }
  
  .tw-blog .tw-blog-posts .tw-blog-post {
	text-align: center;
  }
  
  .tw-blog .tw-blog-posts .tw-blog-post h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
  }
  
  .tw-blog .tw-blog-posts .tw-blog-post p {
	font-size: 1rem;
	opacity: 0.8;
	margin-bottom: 1.5rem;
  }
  
  .tw-blog .tw-blog-posts .tw-blog-post .tw-read-more {
	color: #007bff;
	font-weight: bold;
  }
  
  /* Testimonials section styles */
  .tw-testimonials {
	padding: 4rem 2rem;
	text-align: center;
  }
  
  .tw-testimonials h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
  }
  
  .tw-testimonials .tw-testimonial-carousel {
	/* Add your carousel styles here */
  }
  
  /* Newsletter section styles */
  .tw-newsletter {
	padding: 4rem 2rem;
	text-align: center;
	background-color: #007bff;
	color: #fff;
  }
  
  .tw-newsletter h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
  }
  
  .tw-newsletter p {
	font-size: 1.1rem;
	opacity: 0.8;
	margin-bottom: 2rem;
  }
  
  .tw-newsletter .tw-newsletter-form {
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .tw-newsletter .tw-newsletter-form input[type="email"] {
	padding: 0.5rem;
	border: none;
	border-radius: 4px;
	width: 100%;
	font-size: 1rem;
	margin-bottom: 1rem;
  }
  
  .tw-newsletter .tw-newsletter-form button {
	padding: 0.5rem 1.5rem;
	font-size: 1rem;
	background-color: #fff;
	color: #007bff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .tw-newsletter .tw-newsletter-form button:hover {
	background-color: #046ad6da;
	color: #fff;
  }
  
  /* Footer styles */
  .tw-footer {
	padding: 2rem;
	background-color: #333;
	color: #fff;
  }
  
  /* Footer info styles */
  .tw-footer .tw-footer-info p {
	margin-bottom: 1rem;
  }
  
  /* Footer links styles */
  .tw-footer .tw-footer-links ul {
	list-style: none;
	display: flex;
	justify-content: center;
	padding-right: 23px;
  }
  
  .tw-footer .tw-footer-links ul li {
	margin: 0 1rem;
  }
  
  .tw-footer .tw-footer-links ul li a {
	color: #fff;
  }
  
  @media screen and (max-width: 768px) {
	/* Responsive styles for smaller screens */
  
	/* Header styles */
	/* Hero section styles */
	/* Featured tool section styles */
	/* Categories section styles */
	/* Blog section styles */
	/* Testimonials section styles */
	/* Newsletter section styles */
	/* Footer styles */
	.tw-footer {
	  padding: 1rem;
	}
  
	/* Footer info styles */
	.tw-footer .tw-footer-info p {
	  font-size: 0.9rem;
	}
  
	/* Footer links styles */
	.tw-footer .tw-footer-links ul li {
	  margin: 0 0.5rem;
	}
  }
  