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

        body {
            font-family: var(--font-default);
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }

        .title {
            font-size: 2.5rem;
            font-weight: 700;
            color: rgba(79, 168, 68, 1);
        }

        .subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            margin-bottom: 2rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .card {
            background: transparent;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease-in-out;
            text-decoration: none;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card-icon {
            font-size: 2rem;
            color: #6b7280;
            margin-bottom: 1rem;
        }

        .card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        @media (max-width: 768px) {
            .title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }
        }

        /* Navbar Styling */
        .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(2, 1, 1, 1); /* Dark background */
    color: rgba(79, 168, 68, 1); 
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: -10%;
}

.navbar-logo {
    width: 50%;
    height: 50%;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-link {
    text-decoration: none;
    /* color: rgba(79, 168, 68, 1); */
    color: white;
    font-size: 0.9rem;
}

.navbar-link:hover {
    text-decoration: underline;
    color: rgba(79, 168, 68, 1);
}

.navbar-signin {
    background-color: rgba(79, 168, 68, 1); /* Green button */
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 0.9rem;
}

.navbar-signin:hover {
    background-color: rgba(2, 1, 1, 1); /* Darker background */
    color: rgba(79, 168, 68, 1); /* Green text */
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    position: absolute;
    right: 20px;
    top: 15px;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: rgba(79, 168, 68, 1);
}

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

    .navbar-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(2, 1, 1, 1);
        padding: 10px 20px;
    }

    .navbar-links.hidden {
        display: none;
    }

    .navbar-links:not(.hidden) {
        display: flex;
    }
}

@media (min-width: 769px) {
    .navbar {
        flex-wrap: nowrap;
    }

    .navbar-links {
        display: flex;
        margin-left: auto;
        position: static;
    }

    .hamburger {
        display: none;
    }
}



       /* Footer Styling */
.footer {
    background-color: rgba(79, 168, 68, 0.1); /* Light background with green tint */
    color: rgba(2, 1, 1, 1); /* Dark text for contrast */
    font-family: var(--font-default);
    padding: 20px;
    line-height: 1.6;
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-text {
    flex: 1 1 45%; /* Adjusts text block size for responsiveness */
    min-width: 300px;
}

.footer-text h2 {
    color: rgba(79, 168, 68, 1); /* Primary green */
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-text p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-text a {
    text-decoration: none;
    color: rgba(79, 168, 68, 1); /* Primary green */
    font-weight: bold;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-code {
    flex: 1 1 45%; /* Adjusts code block size for responsiveness */
    min-width: 300px;
    background-color: rgba(79, 168, 68, 0.05); /* Subtle green tint for code block */
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto; /* Ensures code scrolls on smaller screens */
    font-family:  var(--font-code);

}

.footer-code pre {
    margin: 0;
    color: var(--text-primary); /* Dark text for code */
    white-space: pre-wrap; /* Wrap long code lines */
    word-wrap: break-word; /* Break lines for overflow */
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-primary); /* Slightly faded dark text */
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stacks content vertically on smaller screens */
        gap: 10px;
    }

    .footer-text, .footer-code {
        flex: 1 1 100%;
    }
}
