body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
 /* header css with respnsiveness */
 .container {
   max-width: 1280px;
   margin: 0 auto;
   padding: 0 1.5rem;
 }

 header {
   height: 64px;
   position: relative;
   width: 100%;
   background: #ffffff;
   border-bottom: 1px solid #f3f4f6;
   z-index: 100;
   display: flex;
   align-items: center;
 }

 .header-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
 }

 .logo {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   text-decoration: none;
 }

 .logo-box {
   background: #2563eb;
   width: 40px;
   height: 40px;
   border-radius: 0.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }

 .logo-text {
   font-size: clamp(1.25rem, 4vw, 1.5rem);
   font-weight: 700;
   color: #111827;
   letter-spacing: -0.025em;
 }

 .text-blue {
   color: #2563eb;
 }

 /* Navigation Responsive */
 .desktop-nav {
   display: none;
   gap: 1.5rem;
   align-items: center;
 }

 .nav-link {
   color: #374151;
   font-weight: 500;
   text-decoration: none;
   font-size: 1rem;
   transition: color 0.2s;
 }

 .nav-link:hover {
   color: #2563eb;
 }

 .menu-btn {
   display: block;
   background: none;
   border: none;
   cursor: pointer;
   color: #374151;
 }

 @media (min-width: 768px) {
   .desktop-nav {
     display: flex;
   }

   .menu-btn {
     display: none;
   }
 }

 /* 5. MOBILE MENU */
 .mobile-nav {
   display: none;
 }

 .mobile-nav.active {
   display: flex;
   flex-direction: column;
   position: absolute;
   top: 64px;
   left: 0;
   width: 100%;
   background: #ffffff;
   border-bottom: 1px solid #f3f4f6;
   padding: 1rem 0;
   z-index: 99;
 }

 .mobile-nav a {
   padding: 0.75rem 1.5rem;
   text-decoration: none;
   color: #374151;
   font-weight: 500;
   font-size: 1.1rem;
 }

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    line-height: 1.7;
}

.contact-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-email {
    color: #000000;
    font-weight: 600;
}

@media (max-width: 640px) {
    .contact-container {
        padding: 50px 20px;
    }
}
    :root {
        --mg-f-bg: #ffffff;
        --mg-f-text: #111827;
        --mg-f-muted: #4b5563;
        --mg-f-accent: #2563eb;
        --mg-f-border: #f3f4f6;
        --mg-f-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    .mg-site-footer {
        background-color: var(--mg-f-bg);
        border-top: 1px solid var(--mg-f-border);
        /* Fluid padding: scales between 3rem and 5rem */
        padding-top: clamp(3rem, 8vw, 5rem);
        font-family: var(--mg-f-sans);
        color: var(--mg-f-text);
        line-height: 1.5;
    }

    .mg-footer-container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .mg-footer-grid {
        display: grid;
        /* Desktop: 3 columns | Mobile: 1 column */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(2rem, 5vw, 4rem);
        padding-bottom: clamp(3rem, 8vw, 4rem);
    }

    .mg-footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* FLUID LOGO SIZE: Scales between 1.3rem and 1.7rem */
    .mg-footer-logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-decoration: none;
        color: var(--mg-f-text);
        font-weight: 800;
        font-size: clamp(1.3rem, 4vw, 1.7rem);
        margin-bottom: 1rem;
    }

    .mg-footer-logo-icon {
        background: #eff6ff;
        padding: clamp(6px, 1.5vw, 10px);
        border-radius: 8px;
        display: flex;
    }

    /* FLUID DESCRIPTION: Scales between 0.95rem and 1.1rem */
    .mg-footer-summary {
        color: var(--mg-f-muted);
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        max-width: 320px;
        margin: 0;
    }

    /* FLUID TITLES: Scales between 0.85rem and 1rem */
    .mg-footer-nav-title {
        font-size: clamp(0.85rem, 2vw, 1rem);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1.5rem;
        color: var(--mg-f-text);
        display: block;
    }

    .mg-footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mg-footer-list li {
        margin-bottom: clamp(8px, 1.5vw, 12px);
    }

    /* FLUID LINKS: Scales between 1rem and 1.15rem */
    .mg-footer-link {
        text-decoration: none;
        color: var(--mg-f-muted);
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        transition: color 0.2s ease;
        display: inline-block;
    }

    .mg-footer-link:hover {
        color: var(--mg-f-accent);
    }

    /* COPYRIGHT AREA */
    .mg-footer-bottom {
        border-top: 1px solid var(--mg-f-border);
        padding: clamp(1.5rem, 4vw, 2.5rem) 0;
        text-align: center;
    }

    /* FLUID COPYRIGHT: Scales between 0.85rem and 1.05rem */
    .mg-footer-copy {
        font-size: clamp(0.85rem, 2vw, 1.05rem);
        color: var(--mg-f-muted);
        margin: 0;
    }

    /* Responsive adjustment for small mobiles */
    @media (max-width: 480px) {
        .mg-footer-grid {
            gap: 3rem; /* Increases gap slightly when stacked */
        }
    }
