body {
  font-family: 'Poppins', sans-serif;
}

#primary {
    margin: 0;
    padding: 0;
}

/* Wrapper */
.dp-login-wrap {
    display:flex;
    justify-content:center;
    padding:30px 16px;
}

/* Card */
.dp-login-gate {
    text-align:center;
    padding:28px 20px;
    border-radius:14px;
    background:#ffffff;
    width:100%;
    max-width:420px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    border:1px solid #eef2f7;
}

/* Icon */
.dp-login-icon {
    font-size:34px;
    margin-bottom:6px;
}

/* Heading */
.dp-login-gate h3 {
    margin:6px 0;
    font-size:20px;
    line-height:1.3;
    color:#0f172a;
}

/* Subtext */
.dp-subtext {
    color:#64748b;
    font-size:14px;
    margin-bottom:20px;
}

/* Buttons container */
.dp-login-actions {
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* Buttons (big tap targets) */
.dp-login-btn,
.dp-signup-btn {
    display:block;
    padding:14px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
}

/* Primary */
.dp-login-btn {
    background:#083c71;
    color:#fff;
}

/* Secondary */
.dp-signup-btn {
    background:#f1f5f9;
    color:#0f172a;
    border:1px solid #e2e8f0;
}

/* Trust text */
.dp-trust {
    font-size:12px;
    color:#94a3b8;
    margin-top:14px;
}

/* Slight desktop enhancement */
@media (min-width:768px) {
    .dp-login-wrap {
        padding:60px 20px;
    }

    .dp-login-gate {
        padding:40px;
    }

    .dp-login-gate h3 {
        font-size:22px;
    }
}

/* Base Notice */
.notice {
  width: 90%;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px auto !important;
  border-left: 6px solid transparent;
  background: #f9fafb;
  color: #1f2937;
  box-shadow: 0 6px 14px rgba(0,0,0,.06);
  position: relative;
  display: block;
  padding-left: 42px; /* space for icon */
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

/* Icon bubble */
.notice::before {
  content: "ℹ️";
  font-size: 18px;
  opacity: .9;
  position: absolute;
  left: 14px;
  top: 14px;
}

/* Info */
.notice-info {
  border-left-color: #3b82f6;
  background: #eff6ff;
}

/* Warning */
.notice-warn {
  border-left-color: #f59e0b;
  background: #fff7ed;
}

.notice-warn::before {
  content: "⚠️";
}

/* Error */
.notice-error {
  border-left-color: #ef4444;
  background: #fef2f2;
}

.notice-error::before {
  content: "❌";
}

/* Success */
.notice-success {
  border-left-color: #10b981;
  background: #ecfdf5;
}

.notice-success::before {
  content: "🎉";
}

/* Links inside notice */
.notice a {
  color: #083c71;
  font-weight: 600;
  text-decoration: underline;
}

.notice a:hover {
  text-decoration: none;
}

/* List styling inside notices */
.notice ul {
  margin: 8px 0 0 0;
  padding-left: 0;
}

.notice-list li {
  list-style: none;
  margin: 6px 0;
  padding-left: 26px;
  position: relative;
}

/* Success / learning vibe ticks */
.notice-success .notice-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  color: #10b981;
  font-weight: bold;
}

.sis-quote-box {
  text-align: center;
  font-size: 15px;
  color: #9ca3af;
  background: rgba(8,60,113,.1);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-style: italic;
}

/* Wrapper */
.sis-nav-wrap {
  width: min(90vw, 1100px);
  margin: 1.5rem auto;
}

/* Wrapper */
.sis-switch-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  user-select:none;
}

/* Labels */
.switch-label{
  font-size:14px;
  color:#374151;
  font-weight:500;
}

/* Toggle track */
.sis-toggle{
  width:52px;
  height:28px;
  background:#e5e7eb;
  border-radius:999px;
  position:relative;
  display:inline-block;
  transition:background .25s ease;
  text-decoration:none;
}

/* Active (MF) */
.sis-toggle.is-mf{
  background:#083c71;
}

/* Knob */
.sis-toggle-knob{
  position:absolute;
  top:3px;
  left:3px;
  width:22px;
  height:22px;
  background:#fff;
  border-radius:50%;
  box-shadow:0 2px 6px rgba(0,0,0,.25);
  transition:transform .25s ease;
}

/* Move knob right when MF */
.sis-toggle.is-mf .sis-toggle-knob{
  transform:translateX(24px);
}


/* Navigation bar */
.sis-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: .25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* Links */
.sis-nav a {
  flex: 1 1 0;
  text-align: center;
  padding: .7rem 1rem;
  text-decoration: none;
  color: rgba(0,0,0,0.7);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.sis-nav a:hover {
  background: #f7f9fc;
  color: #083c71;
}

/* Active tab */
.sis-nav a.is-active {
  background: #1FAB89;
  color: #fff;
  font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .sis-nav {
    justify-content: flex-start;
  }
  .sis-nav a {
    flex: 0 0 auto;
    min-width: 120px;
  }
}   

.sis-cta {
  width: min(90vw, 1100px);
  margin: -6px auto 1.25rem;
  padding: .9rem 1.2rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  border-radius: 0 0 14px 14px;
  border: 1px solid #e5e7eb;
  border-top: none;

  background: linear-gradient(
      180deg,
      #ffffff,
      #f8fafc
  );

  box-shadow: 0 6px 18px rgba(0,0,0,0.04);

  position: relative;
  overflow: hidden;
}

.sis-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    radial-gradient(rgba(31,171,137,0.08) 1px, transparent 1px);

  background-size: 24px 24px;
    
}


.sis-cta a {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 0.55rem 1.2rem;
  text-decoration: none !important;

  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .3px;

  color: #1b9678; /* elegant deep green */

  /* White → soft green tint */
  background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 55%,
      #f3fbf6 85%,
      #e7f6ec 100%
  );

  border: none;
  border-bottom: 1px solid #16a34a;

  border-radius: 10px 10px 6px 6px;

  transition: all .25s ease;
}

.sis-cta a:hover {
  transform: translateY(-1px);

  background: linear-gradient(
      to bottom,
      #ffffff,
      #dcfce7 60%,
      #bbf7d0
  );

  box-shadow: 0 4px 10px rgba(22,163,74,.15);
}


@media (max-width: 640px) {
  .sis-cta a {
    justify-content: center;
    font-size: .95rem;
  }
}


.sis-beta-note {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  padding: 10px 14px;
  border-radius: 8px;
  margin: 10px 0 14px;
  font-size: 14px;
  color: #614700;
}
.sis-beta-note strong {
  color: #b34700;
}

.sis-beta-note a {
  color: #296CA5;
  font-weight: 500;
  text-decoration: none !important;
}

#myCustomScrollTop {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 9999;

    /* PERFECT CIRCLE SIZE */
    width: 50px;
    height: 50px;
    border-radius: 50%;

    /* Center icon perfectly */
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    outline: none;
    border: 1px solid rgba(255,255,255,0.12);

    /* Finance look */
    background: #0f1720;
    color: #2ecc71;

    /* Hidden by default */
    opacity: 0;
    pointer-events: none;

    /* Premium depth */
    box-shadow:
        0 10px 24px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.05);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

/* Show */
#myCustomScrollTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-4px);
}

/* Hover */
#myCustomScrollTop:hover {
    background: #111c26;
    box-shadow:
        0 14px 30px rgba(0,0,0,0.45);
}

/* Click press */
#myCustomScrollTop:active {
    transform: scale(0.92);
}

/* Icon */
#myCustomScrollTop i {
    font-size: 18px;
    line-height: 1;
}

.header-nav ul,
.header-nav ol,
.header-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ------------------------------------------------
   BLACK/WHITE HEADER STYLES + GREEN LOGO ACCENT
   - adds "Portfolio" & "Mutual Funds" buttons inline
   - login/register inside desktop menu (as requested)
   - fully responsive, preserves php logic
   - designed to be dropped into a WordPress environment
------------------------------------------------ */
.header-nav {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    position: relative;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 100%;
}

.logo a {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  max-height: 35px; 
  height: auto;
  width: auto;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* --- header right wrapper --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

/* --- main navigation menu (desktop) --- */
.menu {
    background: transparent;
}

.menu .head {
    display: none;  /* mobile close button – hidden on desktop */
}

.menu > ul {
    display: flex;
    align-items: stretch;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.menu > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.menu > ul > li > a {
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: 
        color 0.2s ease,
        transform 0.2s ease;
}

.menu > ul > li > a:hover {
    transform: translateY(-2px);
    color: #2ecc71;
}

/* dropdown arrow */
.menu li.dropdown i.fa-chevron-down {
    color: #aaa;
    font-size: 0.75rem;
    margin-left: 2px;
    transition: transform 0.2s;
}

.menu li.dropdown:hover i.fa-chevron-down {
    transform: rotate(180deg);
    color: #2ecc71;
}

/* sub-menu (Guide dropdown) */
.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;              /* almost black */
    min-width: 220px;
    padding: 0.75rem 0;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
    list-style: none;
    border: 1px solid #2a2a2a;
}

.menu li.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu .sub-menu li {
    margin: 0;
    padding: 0;
}

.menu .sub-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.menu .sub-menu li a:hover {
    background: #1e2a1e;           /* dark greenish tint */
    color: #2ecc71;
}

/* --- mobile open button (hidden on desktop) --- */
.open-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: space-around;
    padding: 5px;
}

.open-menu-btn:hover {
    background: #888;
}

.open-menu-btn .line {
    display: block;
    width: 100%;
    height: 2px;
    background: #222;
    transition: 0.2s;
    color: #fff;
}

/* USER DROPDOWN — same style as .menu .sub-menu */
.sis-userbox {
    position: relative;
}

/* dropdown container */
.sis-userbox .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;

    background: #111;
    min-width: 220px;
    padding: 0.75rem 0;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;

    z-index: 999;
    list-style: none;
    border: 1px solid #2a2a2a;
}

/* show on hover */
.sis-userbox:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* list items */
.sis-userbox .sub-menu li {
    margin: 0;
    padding: 0;
}

/* links */
.sis-userbox .sub-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #ddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

/* hover effect */
.sis-userbox .sub-menu li a:hover {
    background: #1e2a1e;
    color: #2ecc71;
}

.user-dd {
    background: #111;
    border: 1px solid #2ecc71;
    color: #fff;
    border-radius: 40px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.sis-userbox:hover .sis-userdropdown,
.user-dd:focus + .sis-userdropdown,
.sis-userdropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- logged-in extras: Portfolio + Mutual Funds buttons inside header --- */
/* we inject them using php logic — adjust via header-right flex */
.header-right .logged-in-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 0.5rem;
}

.header-right .btn-inline {
    background: transparent;
    border: 1px solid #3a3a3a;
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.header-right .btn-inline i {
    color: #2ecc71;
    font-size: 1rem;
}

.header-right .btn-inline:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #000;
}

.header-right .btn-inline:hover i {
    color: #000;
}

/* login/register inline inside menu (desktop) — as requested */
.menu .login-register-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1.2rem;
    padding-left: 1.2rem;
    border-left: 1px solid #333;
}

.menu .login-register-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    border: 1px solid #3a3a3a;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu .login-register-links a i {
    color: #2ecc71;
    font-size: 0.8rem;
}

.menu .login-register-links a:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #000;
}

.menu .login-register-links a:hover i {
    color: #000;
}

/* --- responsive design (mobile) --- */
@media (max-width: 991px) {
    .header-container {
        padding: 0.5rem 1.2rem;
    }

    .open-menu-btn {
        display: flex;  /* show hamburger */
    }

    /* menu becomes off-canvas from the right */
    .menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #0a0a0a;
        z-index: 2000;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.7);
        border-left: 1px solid #2a2a2a;
        overflow-y: auto;
    }

    .menu.active {
        right: 0;
    }

    .menu .head {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 2rem;
    }

    .close-menu-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        position: relative;
    }

    .close-menu-btn::before,
    .close-menu-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 24px;
        height: 2px;
        background: #fff;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .close-menu-btn::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .menu > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .menu > ul > li {
        width: 100%;
    }

    .menu > ul > li > a {
        color: #fefefe;
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid #222;
    }

    .menu li.dropdown i.fa-chevron-down {
        float: right;
    }

    .menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #1a1a1a;
        margin: 0.5rem 0 0.5rem 1rem;
        padding: 0.5rem 0;
        border-left: 2px solid #2ecc71;
        display: none;
    }
    
    .menu li.open > .sub-menu {
        display: block;
    }

    /* hide desktop login/register inside menu, we show at bottom */
    .menu .login-register-links {
        display: none;
    }

    /* show login/register inside mobile panel */
    .menu .mobile-login-links {
        display: flex;
        flex-direction: column;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #2a2a2a;
        gap: 0.75rem;
    }

    .menu .mobile-login-links a {
        color: #fff;
        text-decoration: none;
        padding: 0.7rem 1rem;
        background: #1a1a1a;
        border-radius: 40px;
        border: 1px solid #333;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .menu .mobile-login-links a i {
        color: #2ecc71;
    }

    /* header right spacing */
    .header-right {
        gap: 1rem;
    }

    /* logged-in buttons may wrap – adjust */
    .header-right .logged-in-buttons {
        gap: 0.4rem;
    }

    .header-right .btn-inline {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .user-dd {
        width: 38px;
        height: 38px;
    }
    
    .main-menu{
        flex-direction:column;
        width:100%;
    }
    
    .menu-btn a{
        display:block;
        width:100%;
        text-align:left;
    }
    
    .user-dd > a{
        font-size:18px;
    }
}

/* tiny screens */
@media (max-width: 480px) {
    .header-right .btn-inline span {
        display: none;  /* hide text, keep icon */
    }
    .header-right .btn-inline i {
        margin: 0;
    }
    .header-right .btn-inline {
        padding: 0.4rem;
    }
}

.menu-btn a {
    border:1px solid #1FAB89;
    padding:6px 14px !important;
    border-radius:30px;
}

.menu-btn a:hover {
    background:#2ecc71;
    color:#000 !important;
}

.user-dd .sub-menu {
    right:0;
    left:auto;
}


.page-container {
  width: 100%;    
  display: flex;
  justify-content: center; /* centers content + sidebar */
  gap: 10px;
  margin: 0 10px;
}

.main-content {
    flex: 0 0 85%;   /* content takes 80% */
  max-width: 85%;
}

@media (max-width: 480px) {
    .page-container {
        margin: 0;
    }
    .main-content {
        flex: 1 1 90%;
        max-width: 90%;
        margin: 0 auto;
    }
}

.page-wrapper-block {
  display: block;
  width: 90%;
  margin: 0 auto;
  justify-content: flex-start;
}

.page-wrapper-flex {
  display: flex;
  flex: 0 0 90%;   /* content takes 80% */
  max-width: 90%;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: nowrap;    
  align-items: stretch; 
}

.page-wrapper-flex-70 {
  display: flex;
  width: 70%;           
  margin: 0 auto;
  gap: 30px;
  flex-wrap: nowrap;    
  align-items: stretch;
}

.section-flex-full {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.wrapper-box {
  background-color: #ffffff;
  padding: 20px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wrapper-box-90 { width: 90%; }


.flex-15 { width: 15%; }
.flex-20 { width: 20%; }
.flex-30 { width: 30%; }
.flex-35 { width: 35%; } 
.flex-40 { width: 40%; }
.flex-50 { width: 50%; }
.flex-60 { width: 60%; }
.flex-70 { width: 70%; }
.flex-75 { width: 75%; }
.flex-80 { width: 80%; }


.site-footer {
  background: linear-gradient(160deg, #0a0a0a, #1FAB89);
  color: #fff;
  width: 100%;
  padding: 40px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-disclaimer {
  padding: 20px;
  font-size: 12px;
  color: #e0e0e0;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-promo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-left, .promo-right {
  flex: 1 1 45%;
  min-width: 280px;
}

.footer-promo h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-left: 4px solid #fff;
  padding-left: 10px;
  font-weight: 600;
  color: #fff;
}

.footer-promo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-promo li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.promo-right p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 15px;
}

.promo-btn {
  background: #fff;
  color: #1FAB89;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #1FAB89;
  color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.footer-middle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 20px;
  gap: 30px;
}

.footer-left span {
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 20px;
  display: block;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 24px;
}

.social-icons a {
  color: #fff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1FAB89;
}

.footer-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.footer-links a {
  color: #fff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1FAB89;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 15px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .header-nav .header-container {
      width: 100%;
      padding: 10px;
      margin: 0 auto;
    }
    .header-nav .header-container .logo {
      justify-content: start;
      margin: 0;
      padding: 0;
    }
    .header-right {
    gap: 1rem;
    }
    .header-right button {
      font-size: 16px;
      padding: 5px;
    }

    .page-wrapper-flex,
    .page-wrapper-block {
        width: 100%;
        padding: 0 10px;
        gap: 10px;  
        flex-direction: column;
        margin: 5px 0;
    }
    
    .flex-15,
    .flex-20,
    .flex-30,
    .flex-35,
    .flex-40,
    .flex-50,
    .flex-60,
    .flex-70,
    .flex-75,
    .flex-80 {
      width: 100%;
    }
    
    .section-flex-full {
      flex-direction: column;
      gap: 10px;
      padding: 0 10px;
    }
    
    .wrapper-box {
      padding: 10px;
    }
    
    .site-footer {
      padding: 10px;
    }
    
    .footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 20px;
   }
}

.sio-report-line { 
    text-align:center; 
    margin: 10px 15px; 
    color:#fff; 
}
.sio-report-line a { 
    font-weight:500;
    color: #1FAB89;
    text-decoration:underline;
    letter-spacing: 1px;
}

.sio-modal { 
    position:fixed; 
    inset:0; 
    display:none; 
    z-index:9999; 
}
.sio-modal.active {
    display:block; 
}
.sio-modal-backdrop { 
    position:absolute; 
    inset:0; 
    background:rgba(0,0,0,.4); 
}
.sio-modal-card {
  position:relative;
  max-width:520px; 
  margin:8vh auto; 
  background:#fff; 
  border-radius:16px;
  padding:20px; 
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.sio-close { 
    position:absolute; 
    top:8px; 
    right:12px; 
    border:0; 
    background:transparent; 
    font-size:28px; 
    cursor:pointer; 
}
.sio-label { 
    font-size:14px; 
    margin:10px 0 6px; 
    display:block; 
    color:#1a1d23; 
}
.sio-input, .sio-input:focus, .sio-input:active {
  width:100%; 
  padding:10px 12px; 
  border:1px solid #d6d6d6; 
  border-radius:10px; 
  outline:none; 
  height: 50px;
}
.sio-input:focus { 
    border-color:#083c71; 
    box-shadow:0 0 0 3px rgba(8,60,113,.12); 
}

.sio-btn {
  margin-top:12px; 
  width:100%; 
  padding:12px; 
  border:0; 
  border-radius:12px; 
  cursor:pointer;
  background:#083c71; 
  color:#fff; 
  font-weight:600;
}
.sio-btn:hover { filter:brightness(1.05); }
.sio-msg { margin-top:10px; font-size:14px; }
.sio-msg.ok { color:#1f7a1f; }
.sio-msg.err { color:#b00020; }

