* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f7f7f7;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Top Navigation */
.topnav {
    background-color: #f1f1f1;
    width: 100%;
    overflow: hidden;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.topnav a {
    display: block;
    color: #010101;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
}

.topnav a.split img {
    width: auto;
    height: 50px;
}

.topnav a:hover {
    background-color: #99ffff;
    color: black;
}

.topnav .icon {
    display: none;
}

@media screen and (max-width: 768px) {
    .topnav a {
        display: block;
        text-align: left;
        padding: 10px;
    }
    
    .topnav .icon {
        display: block;
        cursor: pointer;
    }
    
    .topnav.responsive {
        position: relative;
    }
    
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}



/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    max-width: 80%;
}

.hero-text h1 {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Contact Content Section */
.contact-content {
    padding: 40px;
    background-color: #fff;
    text-align: center;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-content form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-content label {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
    color: #333;
}

.contact-content input[type="text"],
.contact-content input[type="email"],
.contact-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
}

.contact-content textarea {
    height: 150px;
    resize: none;
}

.contact-content button {
    display: inline-block;
    background-color: #f1f1f1;
    color: #000000;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-content button:hover {
    background-color: #99ffff;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .contact-content form {
        width: 90%;
    }

    nav ul li a {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}
