body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
}


.navbar {
    background-color: #1a1a1a;
    color: white;
    padding: 10px 0;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #ccc;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
    transition: 0.3s;
}

.nav-links li a:hover {
    background-color: #444; 
    color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
}

.text-block h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.text-block p {
    color: #666;
    line-height: 1.6;
    max-width: 300px;
}