@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ============================= */
/*         Table of Contents      */
/* ============================= */
/*  1. General Reset              */
/*  2. Body Styling               */
/*  3. Header Styles              */
/*  4. Logo                       */
/*  5. Buttons                    */
/*  6. Mobile Menu Button         */
/*  7. Dropdown Styles            */
/*  8. Responsive Media Queries   */
/*  9. Main Content               */
/* 10. Hero Section               */
/* 11. Responsive Adjustments     */
/* 12. Content Section & Tables   */

/* ============================= */
/*  1. General Reset              */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif; /* Set global font to Montserrat */
}

/* ============================= */
/*  2. Body Styling               */
/* ============================= */
body {
  background-color: #f9f9f9; /* Light gray background color */
  color: #333; /* Dark gray text color */

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* ============================= */
/*  3. Header Styles              */
/* ============================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  width: 100%;
  max-width: 1330px;
}

/* ============================= */
/*  4. Logo                       */
/* ============================= */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-size: 18px;
  font-weight: 700;
}

/* ============================= */
/*  5. Buttons                    */
/* ============================= */
.buttons {
  display: flex;
  gap: 10px;
}

.buttons button {
  padding: 8px 12px;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  transition: 0.3s;
}

.buttons button:last-child {
  border-color: #272727;
  color: #979797;
}

.buttons button:hover {
  background-color: #000;
  color: #f0f0f0;
}

/* ============================= */
/*  6. Mobile Menu Button         */
/* ============================= */
.menu-btn {
  display: none; /* Hidden by default */
  padding: 8px 12px;
  border: 1px solid #000;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
}

/* ============================= */
/*  7. Dropdown Styles            */
/* ============================= */
.dropdown {
  display: none;
  position: absolute;
  right: 10px;
  top: 50px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px;
  border: none;
  background: white;
  cursor: pointer;
}

.dropdown button:hover {
  background: #f0f0f0;
}

/* ============================= */
/*  8. Responsive Media Queries   */
/* ============================= */
@media (max-width: 768px) {
  .buttons {
    display: none; /* Hide buttons in mobile mode */
  }

  .menu-btn {
    display: block; /* Show menu button */
  }
  .header {
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) {
  .menu-btn {
    display: none;
  }

  .dropdown {
    display: none !important;
  }
}

/* ============================= */
/*  9. Main Content               */
/* ============================= */
main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #f9f9f9;
  padding: 10px;
  width: 100%;
}

/* ============================= */
/* 10. Hero Section               */
/* ============================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  gap: 140px;
  padding: 80px 0 0 0;
  background-image: url(./img/67104034875bfafd1da6cc9c_Digital\ Flow\ -\ Flat\ Bottom\ -\ Large.svg);
  background-position: right, 0% bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-text {
  width: 40%;
}

.hero-text h1 {
  font-size: 68px;
  font-weight: 900;
  color: #222;
  margin-bottom: 10px;
}

.hero-text p {
  width: 80%;
  font-size: 20px;
  color: #000000;
  margin: 60px 0;
  line-height: 1.5;
  font-weight: 500;
}

.hero-text .btn {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #ff6600;
  color: #2c2c2c;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-text .btn:hover {
  background: #ff6600;
  color: white;
}

.hero-image {
  display: flex;
  justify-content: center;
  height: 70vh;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  object-fit: contain;
}

/* ============================= */
/*  11. Responsive Adjustments   */
/* ============================= */

@media (max-width: 968px) {
  .hero {
    height: auto;
    gap: 20px;
    background-image: none;
  }
  .hero-text h1 {
    font-size: 38px;
  }
  .hero-image img {
    max-width: 300px;
  }
  .hero-image {
    margin-top: 25px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    height: auto;
    gap: 0;
    background-image: none;
  }

  .hero-image {
    margin-top: 25px;
    height: auto;
  }

  .hero-image img {
    max-width: 300px;
  }

  .hero-text h1 {
    font-size: 28px;
  }
  .hero-text {
    width: 100%;
  }
  .hero-text p {
    font-size: 18px;
    width: 100%;
  }
}

/* ============================= */
/*  12. Content Section & Tables   */
/* ============================= */

.content-section {
  margin-top: 80px;
  max-width: 1330px;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.main-title {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  width: 90%;
  margin-bottom: 25px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.info-cell {
  padding: 20px;
  text-align: start;
  vertical-align: top;
  gap: 10px;
  margin: 10px;
}

.icon {
  font-size: 30px;
  display: block;
  margin-bottom: 20px;
}

.title {
  display: block;
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 10px;
}

.content {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  tr {
    display: flex;
    flex-direction: column;
  }
  .main-title {
    font-size: 22px;
  }
  .content-section {
    padding: 10px;
  }
  .info-cell {
    text-align: center;
  }
  .icon {
    display: inline;
  }
}
