
h2{font-family:'Times New Roman', Times, serif;
    font-size:40px;
    font-weight: bold;}

body{padding-top: 60px;}


nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #cb9c00;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
}

.logo{
    display: flex;
    align-items: center;
    font-size: 30px;
    margin-right:25px;
    font-weight: bold;
    font-family:'Times New Roman';
}
.logo img{height:60px;
    margin-right:30px;
    border-radius:8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: flex-end; /* links are aligned to the right */
    align-items: center; /* vertical centering */
    margin-right: 40px; /* Adds spacing from the right edge */
}
.nav-links li{
    display:inline;
}
.nav-links a {
    text-decoration: none;
    color: aliceblue;
    font-weight: bold;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: white;
    background-color: black;
    border-radius: 5px;
}


.page-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers both elements */
    gap: 40px; /* Increases spacing between text and image */
    padding: 40px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}



.tagline{
    font-family:'Times New Roman';
    text-align: left;
    font-size: 30px;
    color:black
}
.chat-button {
    text-align: right;
    display: inline-block;
    padding: 12px 20px;
    background-color: #cb9c00;
    color: aliceblue;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    font-weight: bold;
}
.chat-button:hover {
    background-color: #a37800;
}

.image{
    width: 70%;
margin-top: 20px;
border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .page-container {
        flex-direction: column;
        text-align: center;
    }
    .tagline, .chat-button {
        text-align: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}