* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}
body {
    background: #f8f9fa;
}
    p{
        font-size: 18px;
        line-height: 30px;
    }
    table {
        border-collapse:collapse;
        width:100%;
        margin: 10px auto;
        
    }
        td, th {
            border: 1px solid black;
            padding: 8px;
        }
        .content{
            background:white;
            padding:30px;
        }
        h2{
            font-size:30px;
            margin-bottom: 20px;
            line-height: 1.2em;
        }
        h3{
            font-size:28px;
            margin-bottom: 20px;
            line-height: 1.2em;
        }
        h4{
            font-size:26px;
            margin-bottom: 20px;
            line-height: 1.2em;
        }
        footer{
           text-align:center;
           margin:10px;
        }
        ul{
            padding:10px;
        }
        .container{
          width: 100%;
          max-width: 1200px;
          margin: 20px auto;
        }
        button{
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    width: 270px;
    height: 55px;
    margin: 10px auto;
    border: 2px solid #505ac7;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0px 0px 2px 0px #333333;
        }
        button:hover{
            background: white;
        }
        .text{
    text-decoration: none;
    color: #ffffff;
    font-family: Tahoma;
    font-size: 20px;
    text-align: center;
    font-style: normal;
    font-weight: bold;
    line-height: 1em;
    box-sizing: border-box;
    display: block;
    background-color: unset;
    padding: 10px;
        }
/* Header */
    header {
    background: #ffffff;
}

/* Navbar */
nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Logo */
.logo a {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #3b82f6;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    font-size: 26px;
    color: #000000;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 65px;
        left: -100%;
        flex-direction: column;
        background: #111827;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle:checked ~ .nav-links {
        left: 0;
    }

    .hamburger {
        display: block;
    }
    .content{
            padding:10px;
        }
}