    /* styles.css */

    /* General body styling */
    body {
        background-color: #f9fafb;
        font-family: 'Libre Baskerville', Georgia, serif;
        margin: 0;
        padding: 0;
    }

    /* Fix the Navbar to the top */
    nav {
        background-color: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    nav a {
        color: #4b5563;
        font-weight: 600;
        padding: 0.5rem 1rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    nav a:hover {
        color: #000000;
    }

    nav h1 {
        font-size: 1.75rem;
    }

    nav .bg-black {
        background-color: black;
        border-radius: 9999px;
        font-weight: 600;
        padding: 10px 20px;
        color: white;
    }

    nav .bg-black:hover {
        background-color: #333;
    }

    /* Hero Section Styling */
    .hero-section {
        padding: 3rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-section .mb-6 {
        margin-bottom: 1.5rem;
    }

    .hero-section .text-5xl {
        font-size: 2.5rem;
        font-weight: bold;
    }

    .hero-section .text-xl {
        color: #4b5563;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .hero-section button {
        background-color: black;
        border-radius: 9999px;
        color: white;
        font-size: 1.125rem;
        padding: 0.75rem 2rem;
        transition: background 0.3s, transform 0.3s;
        cursor: pointer;
    }

    .hero-section button:hover {
        background-color: #333;
        transform: translateY(-2px);
    }

    /* Image Style */
    img {
        max-width: 100%;
        height: auto;
        transition: box-shadow 0.3s ease;
    }

    img:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    /* Only show hero-image above 923px */
    @media (max-width: 923px) {
        .hero-image {
        display: none;
        }
    }

    @media (min-width: 924px) {
        .hero-image {
        display: block;
        }
    }

    /* Footer Styling */
    footer {
        background-color: #1f2937;
        color: #d1d5db;
        padding: 3rem 1rem;
    }

    footer h3 {
        color: #ffffff;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

    footer ul li {
        margin-bottom: 0.5rem;
    }

    footer ul li a {
        color: #d1d5db;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    footer ul li a:hover {
        color: #9ca3af;
    }

    footer ul.flex {
        display: flex;
        gap: 1rem;
    }

    footer ul.flex li a {
        font-size: 1rem;
    }

    footer .container {
        display: grid;
        gap: 2rem;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    footer .text-center {
        color: #6b7280;
        font-size: 0.875rem;
        margin-top: 2rem;
        text-align: center;
    }

    /* Layout below nav */
    #main-content {
        margin-top: 80px;
    }

    /* Responsive tweaks */

    /* Mobile adjustments */
    @media (max-width: 768px) {
        nav h1 {
        font-size: 1.5rem;
        }

        .hero-section .text-5xl {
        font-size: 2rem;
        }

        .hero-section .text-xl {
        font-size: 1rem;
        }

        .hero-section button {
        font-size: 1rem;
        padding: 10px 24px;
        }

        footer .container {
        grid-template-columns: 1fr;
        gap: 1rem;
        }
    }

    /* Extra small screens */
    @media (max-width: 480px) {
        body {
        font-size: 14px;
        }

        .hero-section {
        padding: 2rem 1rem;
        }

        .hero-section .text-5xl {
        font-size: 1.75rem;
        }

        .hero-section button {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
        }
    }

    /* Larger screens footer layout */
    @media (min-width: 769px) {
        footer .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    /* Blinking cursor effect */
    #typewriter::after {
        animation: blink 1s infinite;
        color: white;
        content: '|';
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }


    @media (max-width: 768px) {
        img:not(.hero-image) {
        display: none;
        }
    }
