     @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Colors extracted from the image */
            --bg-cream: #E8D5C4;
            --ted-black: #1A1A1A;
            --ted-dark-gray: #2D2D2D;
            --ted-light-gray: #4A4A4A;
            --ted-pink: #E8A5A5;
            --ted-white: #F5F5F5;
            --accent-gray: #3D3D3D;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: var(--bg-cream);
            color: var(--ted-black);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            overflow-x: hidden;
        }

        /* Typography Styles */
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--ted-black);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--ted-dark-gray);
            margin-bottom: 0.875rem;
            text-transform: uppercase;
        }

        h3 {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--ted-light-gray);
            margin-bottom: 0.75rem;
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--ted-black);
            margin-bottom: 0.5rem;
        }

        p {
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--ted-dark-gray);
            margin-bottom: 1rem;
        }

        /* Navbar Styles */
        .navbar {
            width: 100%;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: center;
            position: fixed;
            top: 0;
            z-index: 100;
            background: rgba(232, 213, 196, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--ted-black);
        }

        .navbar ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .navbar li {
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar li:hover {
            color: var(--ted-pink);
            transform: translateY(-2px);
        }

        .navbar a {
            color: var(--ted-black);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar a:hover {
            color: var(--ted-pink);
        }

        .navbar i {
            font-size: 1.2rem;
        }

        /* Home Content Styles */
        .home-content {
            margin-top: 120px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            max-width: 800px;
            width: 100%;
            flex: 1;
        }

        .image_container {
            width: 320px;
            height: 320px;
            border: 4px solid var(--ted-black);
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2rem;
            background: var(--ted-white);
            box-shadow: 8px 8px 0 var(--ted-black);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .image_container:hover {
            transform: translate(-4px, -4px);
            box-shadow: 12px 12px 0 var(--ted-black);
        }

        .image_container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .important_info {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--ted-black);
            margin-bottom: 2rem;
            padding: 1rem 2rem;
            border: 3px solid var(--ted-black);
            background: var(--ted-white);
            box-shadow: 4px 4px 0 var(--ted-black);
            transform: rotate(-1deg);
        }

        /* Button Styles */
        .apply_button {
            background: var(--ted-black);
            color: var(--ted-white);
            border: 3px solid var(--ted-black);
            padding: 1rem 3rem;
            font-size: 1.25rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 4px 4px 0 var(--ted-pink);
            font-family: 'Space Grotesk', sans-serif;
        }

        .apply_button:hover {
            background: var(--ted-pink);
            color: var(--ted-black);
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--ted-black);
        }

        .apply_button:active {
            transform: translate(0, 0);
            box-shadow: 2px 2px 0 var(--ted-black);
        }

        /* Popup Styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.hidden {
    display: none;
}

.about_content {
    background: var(--bg-cream);
    border: 4px solid var(--ted-black);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;  /* Use percentage width */
    max-height: 85vh;  /* Limit height */
    overflow-y: auto;  /* Enable scrolling */
    box-shadow: 8px 8px 0 var(--ted-pink);
    position: relative;
    margin: 1rem;
}

/* Scrollbar styling (optional but nice) */
.about_content::-webkit-scrollbar {
    width: 8px;
}

.about_content::-webkit-scrollbar-track {
    background: var(--ted-white);
    border-radius: 4px;
}

.about_content::-webkit-scrollbar-thumb {
    background: var(--ted-black);
    border-radius: 4px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .about_content {
        padding: 2rem 1.25rem;
        width: 95%;
        max-height: 80vh;
    }
    
    /* Make close button easier to tap on mobile */
    .close_popup {
        width: 44px;
        height: 44px;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    /* Reduce text size slightly on mobile */
    .about_content p {
        font-size: 1rem;
    }
    
    .about_content h2 {
        font-size: 2rem;
        margin-top: 0.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .about_content {
        padding: 1.75rem 1rem;
    }
    
    .about_content p {
        font-size: 0.95rem;
    }
     }

/* Optional: Add a simple animation when popup opens */
.popup:not(.hidden) .about_content {
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.about_content p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.about_content p:last-of-type {
    margin-bottom: 0;
}

.close_popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--ted-black);
    color: var(--ted-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close_popup:hover {
    background: var(--ted-pink);
    color: var(--ted-black);
    transform: rotate(90deg);
}

/* Social links inside popup */
.popup .social_links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.popup .social_links a {
    color: var(--ted-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.popup .social_links a:hover {
    color: var(--ted-pink);
}

/* Task card specific styles */
#task_card {
    text-align: center;
}

#task_card p {
    color: var(--ted-white);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}
        /* Additional Element Styles */
        .card {
            background: var(--ted-white);
            border: 3px solid var(--ted-black);
            border-radius: 15px;
            padding: 2rem;
            margin: 1rem;
            box-shadow: 4px 4px 0 var(--ted-black);
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--ted-black);
        }

        .tag {
            display: inline-block;
            background: var(--ted-pink);
            color: var(--ted-black);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            margin: 0.25rem;
            border: 2px solid var(--ted-black);
        }

        .divider {
            width: 100%;
            height: 4px;
            background: var(--ted-black);
            margin: 2rem 0;
            position: relative;
        }

        .divider::after {
            content: '🧸';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background: var(--bg-cream);
            padding: 0 1rem;
            font-size: 1.5rem;
        }
    .important_info, .apply_button {
    border-radius: 8px; 
}

        
        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 1.75rem; }
            
            .navbar ul {
                gap: 1.5rem;
                font-size: 0.875rem;
            }
            
            .image_container {
                width: 280px;
                height: 280px;
            }
            
            .about_content {
                padding: 2rem;
            }
        }
