* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6fb;
    color: #333;
}

/* Container */
.container {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
    padding: 0 15px;
}

/* Header */
.header {
    margin-bottom: 25px;
}

.icon {
    font-size: 42px;
    color: #7a5cff;
    margin-bottom: 10px;
    transition: 0.3s;
}

/* Hover animation */
.icon:hover {
    transform: scale(1.2) rotate(8deg);
}

h1 {
    font-size: 30px;
    margin-bottom: 5px;
}

.subtitle {
    color: #777;
    font-size: 14px;
}

.date {
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

/* Card */
.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: 0.3s;
}

/* Hover effect */
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Headings */
.card h3 {
    margin-top: 18px;
    color: #222;
    transition: 0.3s;
}

/* Hover */
.card h3:hover {
    color: #7a5cff;
}

/* Paragraph */
.card p {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
    line-height: 1.7;
}

/* List */
.card ul {
    margin-top: 10px;
    padding-left: 20px;
}

.card ul li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* Responsive */
@media (max-width: 600px) {
    .card {
        padding: 20px;
    }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #facc15;
    font-size: 20px;
    font-weight: bold;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 15px;
    cursor: pointer;
    margin-left: 50px;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* NAV MENU */
nav ul.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

nav ul.nav-list li {
    position: relative;
}

nav ul.nav-list li a,
nav ul.nav-list li a:visited,
nav ul.nav-list li a:hover,
nav ul.nav-list li a:active,
nav ul.nav-list li a:focus {
    color: white !important;
    text-decoration: none !important;
    padding: 10px 12px;
    display: block;
    font-size: 14px;
}

nav ul.nav-list li a:hover {
    color: #facc15 !important;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 15px;
    /* position: fixed; */
    bottom: 0;
    left: 0;
    width: 100%;
}
