

    body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  height: 100vh; /* Ensures body is at least full viewport height */
  background: #f2f2f2;

      margin: 0;
      padding: 0;
      box-sizing: border-box;




    }

    nav {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 1rem clamp(1rem, 5vw, 3rem);
    }

    .logo {
        color: white;
        font-size: clamp(1.25rem, 4vw, 2rem);
        font-weight: bold;
        text-shadow: 2px 2px 4px black;

        z-index: 1001;



    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: clamp(1rem, 3vw, 2.5rem);
        align-items: center;
    }

    .nav-menu a {
        color: white;
        text-decoration: none;
        padding: 0.75rem 1.25rem;
        transition: all 0.3s ease;
        border-radius: 8px;
        font-size: clamp(0.9rem, 2vw, 1rem);
        font-weight: 500;
        position: relative;
        white-space: nowrap;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-menu a:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-2px);
    }

    .nav-menu a:hover::before {
        width: 80%;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        z-index: 1001;
        transition: transform 0.3s ease;
    }

    .hamburger:hover {
        transform: scale(1.1);
    }

    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
        margin: 4px 0;
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    /* Tablet styles */
    @media (max-width: 1024px) {
        .nav-menu {
            gap: 1.5rem;
        }

        .nav-menu a {
            padding: 0.6rem 1rem;
        }
    }

    /* Mobile styles */
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 0;
            flex-direction: column;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            width: 100%;
            height: 100vh;
            text-align: center;
            transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            gap: 0;
            padding-top: 80px;
            overflow-y: auto;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu li {
            width: 100%;
            opacity: 0;
            transform: translateX(-20px);
            animation: fadeInSlide 0.5s ease forwards;
        }

        .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
        .nav-menu.active li:nth-child(2) { animation-delay: 0.2s; }
        .nav-menu.active li:nth-child(3) { animation-delay: 0.3s; }
        .nav-menu.active li:nth-child(4) { animation-delay: 0.4s; }
        .nav-menu.active li:nth-child(5) { animation-delay: 0.5s; }

        @keyframes fadeInSlide {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .nav-menu a {
            display: block;
            padding: 1.5rem;
            font-size: 1.25rem;
            width: 100%;
            margin: 0.5rem 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }
    }

    /* Small mobile optimization */
    @media (max-width: 480px) {
        .nav-menu a {
            font-size: 1.1rem;
            padding: 1.25rem;
        }
    }

    /* Content section */
    .content {
        padding: 0;
        max-width: 100%;
        margin: 0;
    }

    .content-inner {
        padding: clamp(1.5rem, 5vw, 4rem);
        padding-bottom: 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    .content h1 {
        font-size: clamp(1.75rem, 5vw, 3rem);
        margin-bottom: 1rem;
        color: #333;
    }

    .content p {
        font-size: clamp(1rem, 2vw, 1.125rem);
        line-height: 1.6;
        color: #666;
        margin-bottom: 0;
    }

    .feature-card {

        background: white;
        padding: 18px;

        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: calc(100% - 50px);
        width: 100%;

        margin: 0 15px;
        margin: 0;

    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 12px rgba(0,0,0,0.15);
    }

    .feature-card h3 {
        color: #667eea;
        margin-bottom: 0.5rem;
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }

    .feature-card p {
        color: #666;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .setup-info {
        background: #e8f4fd;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 20px;
        border-left: 4px solid #0084ff;
    }
    .setup-info h3 {
        margin-top: 0;
        color: #0066cc;
    }
    .setup-info ol {
        margin: 10px 0;
        padding-left: 20px;
        line-height: 1.8;
    }
    .setup-info a {
        color: #0066cc;
        font-weight: 500;
    }
    .setup-info code {
        background: #fff;
        padding: 3px 8px;
        border-radius: 4px;
        border: 1px solid #ddd;
    }



    .buttons {
      font: bold 17px Arial;
      text-decoration: none;
      background-color: #EEEEEE;
      color: #333333;
      padding: 2px 6px 2px 6px;
      border-top: 1px solid #CCCCCC;
      border-right: 1px solid #333333;
      border-bottom: 1px solid #333333;
      border-left: 1px solid #CCCCCC;

      border: 2px solid black;
      border-radius: 12px;


    }


.thefooter {

height: 50px;
background-color: #000000;
bottom:0;

width: 100%;

}
