:root {
  --main-color: #ec5353;
  --text-color: #333;
  --bg-light: #ffffff;
  --bg-footer: #f9f9f9;
  --font-family: 'Segoe UI', sans-serif;
}



body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-color);
}

/* HEADER */
header {
  background-color: var(--bg-light);
  padding: 20px 40px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.logo {
  height: 60px;

}

.menu-toggle {
  display: none;
}

.menu-icon,
.login-icon,
.phone-icon,
.close-icon {
  display: none;
  font-size: 28px;
  color: var(--main-color);
  cursor: pointer;
  position: absolute;
  top: 42px;
  z-index: 12;
}

.menu-icon { right: 20px; }
.login-icon { right: 60px; }
.phone-icon { right: 100px; }
.close-icon {
  font-size: 38px;
  top: 40px;
  right: 20px;
  z-index: 13;
}

/* NAVIGATION */
.menu-bar {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.menu-bar a {
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
  text-decoration: none;
}

.login-btn {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* MAIN */
main {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

main h1 {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 20px;
}

main p {
  font-size: 18px;
  line-height: 1.6;
}

.cover-about {
  padding: 50px 20px;
  background-color: #fff;
    
}
.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
text-align: center;
}

.about-text {
  flex: 1 1 400px;
}
.about-text h2 {
  font-size: 32px;
  color: #ec5353;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}
.about-btn {
  background-color: #ec5353;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}


    .support-section {
      background-color: #fff;
      padding: 40px 20px;
      text-align: center;
      border-top: 1px solid #eee;
    }

/* HERO SECTION */
.hero-section {
  background-color: var(--bg-light);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  max-width: 800px;
  width: 100%;
  text-align: left;
}

.hero-text h2 {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.hero-text ul li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.hero-text ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: var(--main-color);
}

/* BUTTON */
.hero-button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.hero-button:hover {
  background-color: #d94444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p,
  .hero-text ul li {
    font-size: 16px;
  }

  .hero-button {
    width: 100%;
    font-size: 15px;
  }
}

.support-main {
  flex: 1;
  padding: 40px 20px;
}

.support-hero {
  text-align: center;
  margin-bottom: 40px;
}

.support-hero h1 {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 10px;
}

.support-hero p {
  font-size: 18px;
  color: var(--text-color);
}

/* SUPPORT GRID */
.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.support-box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
}

.support-box h2 {
  color: var(--main-color);
  margin-bottom: 10px;
}

.support-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.support-box button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.hosting-main {
  flex: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hosting-intro h1 {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.hosting-intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hosting-packages h2 {
  font-size: 32px;
  color: var(--main-color);
  margin: 60px 0 30px;
  text-align: center;
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.package-box {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  flex: 1 1 300px;
  max-width: 350px;
  text-align: left;
}

.package-box h3 {
  color: var(--main-color);
  margin-bottom: 10px;
}

.package-box p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.package-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.package-box ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.package-box ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
  color: var(--main-color);
}

.package-box button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.email-main {
  flex: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.email-intro h1 {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.email-intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.email-packages h2 {
  font-size: 32px;
  color: var(--main-color);
  margin: 60px 0 30px;
  text-align: center;
}

.ssl-main {
  flex: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ssl-intro h1 {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.ssl-intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ssl-packages h2 {
  font-size: 32px;
  color: var(--main-color);
  margin: 60px 0 30px;
  text-align: center;
}


.domains-main {
  flex: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.domains-intro h1 {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 20px;
}

.domains-intro p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.domains-list h2 {
  font-size: 28px;
  color: var(--main-color);
  margin: 60px 0 30px;
  text-align: center;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.domain-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.domain-note {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

.domains-cta {
  text-align: center;
  margin: 60px 0;
}

.domains-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.domains-cta p {
  font-size: 18px;
  margin-bottom: 20px;
}

.domain-button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.domain-button:hover {
  background-color: #d94444;
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* FOOTER */
.site-footer {
  background-color: var(--bg-footer);
  padding: 40px 20px;
  border-top: 1px solid #ddd;
  color: #333;
text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  color: var(--main-color);
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--main-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .menu-bar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 12;
  }


  .menu-toggle:checked ~ .menu-bar {
    display: flex;
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle:checked ~ .close-icon {
    display: block;
  }

  .menu-toggle:checked ~ .menu-icon,
  .menu-toggle:checked ~ .login-icon,
  .menu-toggle:checked ~ .phone-icon {
    display: none;
  }

  .menu-icon,
  .login-icon,
  .phone-icon {
    display: block;
  }

  .menu-bar a {
    font-size: 20px;
  }

  .login-btn {
    width: 100%;
    margin-top: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  main {
    text-align: center;
  }


}

@media (min-width: 765x) {
  .menu-icon,
  .login-icon,
  .phone-icon,
  .close-icon {
    display: none !important;
  }

  .menu-bar {
    display: flex !important;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .about-text, .cover-image {
    flex: 1 1 100%;
  }


/* RESPONSIVE */
@media (max-width: 768px) {
  .support-grid {
    flex-direction: column;
    align-items: center;
  }

  .support-box {
    width: 100%;
    max-width: 100%;
  }

  .support-hero h1 {
    font-size: 28px;
  }

  .support-hero p {
    font-size: 16px;
  }
}


/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .package-grid {
    flex-direction: column;
    align-items: center;
  }

  .package-box {
    width: 100%;
    max-width: 100%;
  }

  .hosting-intro h1 {
    font-size: 30px;
  }

  .hosting-packages h2 {
    font-size: 28px;

  .email-intro h1 {
    font-size: 30px;
  }

  .email-packages h2 {
    font-size: 28px;
  }

.ssl-intro h1 {
    font-size: 30px;
  }

  .ssl-packages h2 {
    font-size: 28px;
  }

}

@media (max-width: 768px) {
  .hosting-main {
    padding: 40px 15px;
  }

 .email-main {
    padding: 40px 15px;
  }

  .hosting-intro p {
    font-size: 16px;
  }

 .ssl-main {
    padding: 40px 15px;
  }

  .ssl-intro p {
    font-size: 16px;
  }

.domains-main {
    padding: 40px 15px;
  }

  .domains-intro h1 {
    font-size: 30px;
  }

  .domains-intro p {
    font-size: 16px;
  }

  .domains-list h2,
  .domains-cta h2 {
    font-size: 24px;
  }

  .domain-button {
    width: 100%;
    max-width: 300px;
  }

  .package-box h3 {
    font-size: 22px;
  }

  .package-box p,
  .package-box ul li {
    font-size: 15px;
  }

  .package-box button {
    font-size: 15px;
    padding: 10px;
  }
