
body{
    padding: 0;
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f9f9;
    height: 100vh;
}

.landing{
    border-radius: 10px;
    background: white;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 60%;
}

.landing h1{
    margin-bottom: 1rem;
    color: #333;
}

.landing p{
    margin-bottom: 2rem;
    color: #666;
}

.buttons .btn{
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 10px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1rem;
    padding: 1rem;
}

button:hover{
    opacity: 0.9;
}

.btn.primary{
    background: #007bff;
    color: white;
}

.btn.secondary{
    background: #f0f0f0;
    color: #333;
}
.navbar{
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #007bff;
}

.nav-links{
    display: flex;
    list-style: none;
    margin: 0;
    gap: 1.5rem;
}

.nav-links a{
    text-decoration:none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.nav-links a:hover{
    color: #007bff;
}

.nav-links li{
    margin-left: 0;
}

body{
    padding-top: 80px; /* To push landing section below navbar */
}

.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.text{
    flex: 1;
}

.image img{
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
     box-shadow: 0 0 10px rgba(0,0,0,0.1);
     height: auto;
}

@media(max-width: 768px){
    .hero{
        flex-direction: column;
        text-align: center;
    }
}