/* CSS-file with custom styles - don't delete this file and this rule!!! */
.custom_rule { color: inherit; }
 
  /* Scope to this component */
  .ns-form-fw {
    --ns-bg: #292e33;
    --ns-accent: #dff4e8;       /* pale green header */
    --ns-brand: #2289A4;        /* green brand icon/text */
    --ns-text: #0f172a;
    --ns-muted: #475569;
    --ns-border: #dfe3e8;
    --ns-focus: #23a45533;      /* focus ring */
    --ns-radius: 10px;
    --ns-input-bg: #fff;
  }

  .ns-form-fw,
  .ns-form-fw * { box-sizing: border-box; }

  .ns-form-fw {
    width: 100%; 
    background: var(--ns-bg);
    color: var(--ns-text);
    padding: clamp(16px, 3vw, 24px);
	margin-inline: auto; 
	}
/* Wrapper that centers vertically & horizontally */
.ns-center-wrap {
  background: var(--ns-bg);   /* keep your page background */
  min-height: 100vh;          /* full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px;         /* breathing room on small screens */
  box-sizing: border-box;
}

  .ns-form-fw .ns-card {
	   background: #fff;
    width: 100%;
	max-width: 900px;  
    border: 1px solid var(--ns-border);
    border-radius: var(--ns-radius);
    overflow: hidden; /* to keep header corners rounded */
	  margin-inline: auto;
	  
  }



  /* Header (icon, brand, title band) */
  .ns-form-fw .ns-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
  }

  .ns-form-fw .ns-logo {
    width: 28px; height: 28px;
    display: grid; place-items: center;
    color: #fff; background: var(--ns-brand);
    border-radius: 50%;
    font-size: 16px; line-height: 1;
  }
  .ns-form-fw .ns-brand { 
    font-weight: 800; 
    color: var(--ns-brand);
    letter-spacing: .2px;
  }

  .ns-form-fw .ns-titleband {
    background: #3C9EDC;
    text-align: center;
    padding: 16px;
    border-top: 1px solid var(--ns-border);
    border-bottom: 1px solid var(--ns-border);
  }
  .ns-form-fw .ns-titleband h3 {
    margin: 0;
    font-weight: 700;
  }

  /* Form body */
  .ns-form-fw .ns-body {
    padding: clamp(16px, 3vw, 28px);
  }

  /* Labels & inputs */
  .ns-form-fw .ns-field { margin-bottom: 16px; }
  .ns-form-fw label {
    display: block;
    font-size: 13px;
    color: var(--ns-muted);
    margin-bottom: 6px;
  }
  .ns-form-fw .ns-input,
  .ns-form-fw .ns-select,
  .ns-form-fw textarea {
    width: 100%;
    border: 1px solid var(--ns-border);
    background: var(--ns-input-bg);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 16px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
  }
  .ns-form-fw .ns-input:focus,
  .ns-form-fw .ns-select:focus,
  .ns-form-fw textarea:focus {
    border-color: var(--ns-brand);
    box-shadow: 0 0 0 4px var(--ns-focus);
  }

  /* Grid */
  .ns-form-fw .grid { display: grid; gap: 16px; }
  @media (min-width: 768px) {
    .ns-form-fw .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .ns-form-fw .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  }

 /* Footer Columns Layout */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* Keeps all columns aligned at top */
  gap: 40px;
}

.footer-col {
  flex: 1 1 30%;
  min-width: 280px;
  box-sizing: border-box;
}

/* Menu Grid (2 Columns Inside Middle Footer Column) */
.footer_menu_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}

.footer_menu_grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_menu_grid a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer_menu_grid a:hover {
  color: #23a455; /* Accent green */
}

/* Contact Form Fields */
.footer-col input,
.footer-col textarea {
  width: 100%;
  background: #333;
  color: #fff;
  border: 1px solid #555;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 10px;
}

.footer-col button {
  background: #23a455;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-col button:hover {
  background: #1b8a45;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer_menu_grid {
    grid-template-columns: 1fr;
  }
  .footer-col {
    width: 100%;
  }
}




/* Footer Bottom Bar Layout */
.copyright_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* stacks on small screens */
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #ccc;
}

.copyright_text {
  flex: 1;
  text-align: left;
}

.footer_links {
  flex: 1;
  text-align: right;
}

.footer_links a {
  color: #0B3460;
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.3s;
}

.footer_links a:hover {
  color: #23a455; /* Accent green */
}

.footer_links span {
  color: #666;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .copyright_row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .copyright_text,
  .footer_links {
    text-align: center;
  }
}


 
/* Accordion base: hide by default */
.sc_accordion_content[hidden] { display:block; max-height:0; overflow:hidden; padding-top:0; padding-bottom:0; }
.sc_accordion_content { transition:max-height .3s ease, padding .3s ease; }

/* Title state */
.sc_accordion_title { cursor:pointer; user-select:none; display:flex; align-items:center; gap:10px; }

/* Icon swap */
.sc_accordion_item .sc_accordion_icon_opened { display:none; }
.sc_accordion_item.is-open .sc_accordion_icon_closed { display:none; }
.sc_accordion_item.is-open .sc_accordion_icon_opened { display:inline-block; }
 


