* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: #f4f6fb;
    padding: 20px;
}

.header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
     margin-bottom: 30px
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #6c63ff;
}


.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #6c63ff;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.nav a:hover {
    color: #6c63ff;
}



@media (max-width: 768px) {
    .nav {
        display: none;
    }
}


.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: auto;
}


.container > div {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: fadeUp 0.6s ease both;
}


.container > div:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}


.container h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #6c63ff;
    margin-bottom: 6px;
}

.container h3 {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 10px;
}

.container p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
}

.container img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.container h1 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 5px;
}

.container p:last-child {
    color: #f39c12;
    font-weight: 600;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    body {
        padding: 12px;
    }

    .container img {
        height: 180px;
    }

    .container h3 {
        font-size: 1rem;
    }
}


.footer {
    background: #0f172a;
    color: #cbd5f5;
    margin-top: 60px;
    border-radius: 25px 25px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #6c63ff;
}


.social li a {
    font-weight: 500;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 600px) {
    .footer {
        border-radius: 20px 20px 0 0;
    }

    .footer-container {
        text-align: center;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }
}
/* HIDE CHECKBOX */
#menu-toggle {
    display: none;
}

/* HAMBURGER BUTTON */
.menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    user-select: none;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        display: none;
    }

    /* TOGGLE MENU */
    #menu-toggle:checked + .menu-btn + .nav {
        display: flex;
    }
}
