
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(to bottom, #46D4D6, #4DA7F3);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    font-family: 'Lato', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: rgb(245, 245, 245);
}

.hero a {
    background: #ff7a59;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.hero a:hover {
    background: #ff5733;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

section {
    margin: 40px 0;
}

h2 {
    color: #333;
    margin-bottom: 20px;
}

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

ul li {
    background: #f4f4f4;
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid #4facfe;
}

.notes p {
    margin-bottom: 15px;
}

footer {
    background: #1E1E1E;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #1E1E1E, #333333);
    padding: 15px 30px;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.top-bar .home {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
}

.top-bar .home:hover {
    color: #00f2fe;
}

.top-bar a {
    font-family: 'Lato', sans-serif;
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #00f2fe;
}

.tabs {
    display: none;
}