* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scrollable wrapper to center .layout horizontally and allow scroll */
.layout-wrapper {
  overflow-x: auto;
  display: grid;
  justify-content: center;
  padding: 0 1rem; /* optional horizontal padding */
  min-height: 100vh;
  box-sizing: border-box;
}

/* Fixed-width 3-column grid */
.layout {
  display: grid;
  grid-template-areas: "header header header" "left content right" "footer footer footer";
  grid-template-columns: 250px 900px 250px;
  grid-template-rows: auto 1fr auto;
  width: max-content; /* prevent shrinking, width = sum of columns */
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0; /* margin controlled by wrapper */
  padding: 0;
}

/* Assign areas to components */
.layout > header {
  grid-area: header;
}

.layout > aside.sidebar-left {
  grid-area: left;
}

.layout > main.content {
  grid-area: content;
}

.layout > aside.sidebar-right {
  grid-area: right;
}

.layout > footer {
  grid-area: footer;
}

/* Responsive: stack vertically, hide sidebars */
@media (max-width: 900px) {
  .layout {
    grid-template-areas: "header" "content" "footer";
    grid-template-columns: 1fr;
    width: 100vw; /* full viewport width */
    padding: 0 0.5rem;
  }
  .sidebar-left,
  .sidebar-right {
    display: none !important;
  }
  .content {
    width: 100%;
  }
}
.header {
  color: #201d1d;
  padding: 1rem;
  text-align: center;
}

/* === removing default button style ===*/
.button {
  margin: 0;
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}

/* button styling */
.button {
  --border-right: 6px;
  --text-stroke-color: #2563eb;
  --animation-color: #2563eb;
  --fs-size: 2em;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: var(--fs-size);
  font-family: "Arial";
  position: relative;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-stroke-color);
}

/* this is the text, when you hover on button */
.hover-text {
  position: absolute;
  box-sizing: border-box;
  content: attr(data-text);
  color: var(--animation-color);
  width: 0%;
  inset: 0;
  border-right: var(--border-right) solid var(--animation-color);
  overflow: hidden;
  transition: 0.5s;
  -webkit-text-stroke: 1px var(--animation-color);
}

/* hover */
.button:hover .hover-text {
  width: 100%;
  filter: drop-shadow(0 0 23px var(--animation-color));
}

.sidebar-left, .sidebar-right {
  padding: 0.5rem;
}

.sidebar-left ul {
  list-style: none;
}

.sidebar-left li {
  margin-bottom: 0.5rem;
}

.sidebar-left__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #8d8d8d;
  border-radius: 8px;
  padding: 0.5rem;
}

.sidebar-left__link {
  display: block;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  font-size: 0.97rem;
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.sidebar-left__link:hover, .sidebar-left__link:focus {
  background: #f1f5f9;
  color: #0d51e2;
  text-decoration: underline;
}
.sidebar-left__link.is-active {
  background: #f1f5f9;
  color: #0d51e2;
  text-decoration: underline;
}

.sidebar-left__item {
  margin-bottom: 0.5rem;
}
.sidebar-left__item:last-child {
  margin-bottom: 0;
}

.footer {
  text-align: center;
  color: #0f172a; /* light gray text */
  padding: 2rem 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__content {
  flex: 1 1 300px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-nav a {
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #94a3b8; /* lighter gray on hover */
}

.content {
  padding: 0.5rem;
}

.content-wrapper {
  border: 1px solid #8d8d8d;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  height: 72vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.hug-content {
  width: auto;
  max-width: 100%;
  margin-bottom: 0.8rem;
  display: flex;
  justify-content: flex-end;
}

.hug-content-wrapper {
  border: 1px solid #8d8d8d;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.content-heading {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid #ddd;
  color: #0f172a;
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.content-render-text {
  padding: 1rem 1.2rem;
  flex-grow: 1;
  overflow-y: auto;
}
.content-render-text p.content-text {
  color: #0f172a;
  font-size: 0.895rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.content-text {
  color: #0f172a;
  font-size: 0.895rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.content-list {
  color: #0f172a;
  font-size: 0.895rem;
  line-height: 1.4;
  padding-left: 1.25rem;
}
.content-list li {
  margin-bottom: 0.3rem;
}

.content-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1rem;
  font-family: "Inter", sans-serif;
  color: #333;
  line-height: 1.6;
}
.about-page h2 {
  font-size: 1.4rem;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  color: #222;
  border-bottom: 1.5px solid #eee;
  padding-bottom: 0.25rem;
}
.about-page p {
  margin-bottom: 0.8rem;
}
.about-page ul {
  margin-left: 1rem;
  list-style-type: disc;
}
.about-page ul li {
  margin-bottom: 0.5rem;
}
.about-page a {
  color: #0070f3;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-page a:hover {
  color: rgb(0, 88.4938271605, 192);
  text-decoration: underline;
}
.about-page section {
  margin-bottom: 1.44rem;
}
.about-page section.features ul {
  padding-left: 0.8rem;
}
@media (max-width: 768px) {
  .about-page h1 {
    font-size: 1.8rem;
  }
  .about-page h2 {
    font-size: 1.2rem;
  }
  .about-page .about-page {
    padding: 1rem;
  }
}

.faq-page {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 1.5rem;
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  line-height: 1.5;
}
.faq-page h1 {
  font-size: 1.4rem;
  margin-top: 1.2rem;
  margin-bottom: 0.8rem;
  color: #222;
  border-bottom: 1.5px solid #eee;
  padding-bottom: 0.25rem;
}
.faq-page dl dt {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}
.faq-page dl dd {
  margin: 0 0 1rem 0;
  padding-left: 1rem;
}
.faq-page a {
  color: #0070f3;
  text-decoration: none;
}
.faq-page a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .faq-page h1 {
    font-size: 1.6rem;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #334155;
}

.form-input {
  padding: 0.4rem 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 1rem;
}

.form-input--short {
  width: 8rem;
  min-width: 0;
}

.form-group--inline {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.radio-group {
  display: flex;
  gap: 0.5rem;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.98rem;
}

.form-submit {
  align-self: flex-start;
  padding: 0.5rem 1.2rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: #1d4ed8;
}

.form-submit--right {
  margin-left: auto;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.98rem;
  cursor: pointer;
}

.form-checkbox input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  accent-color: #2563eb;
  cursor: pointer;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.875rem;
  background-color: #2563eb;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.copy-btn:hover {
  background-color: #1d4ed8;
}

.copy-btn:active {
  background-color: #1e40af;
}

.copy-btn svg {
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  background: #f5f2ee;
}

.primary-text {
  color: #0f172a;
  font-size: 0.895rem;
  line-height: 1.4;
}

.wrapper {
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  padding: 1.5rem;
}

.page-title {
  font-size: 1px;
  height: 0;
  overflow: hidden;
  position: absolute;
}

/*# sourceMappingURL=style.css.map */
