* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main {
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 50%), url("T1.jpeg");
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.navbar {
    width: 100%;
    max-width: 1200px;
    height: 75px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.icon {
    display: flex;
    align-items: center;
}

.logo {
    color: yellow;
    font-size: 28px;
    font-family: sans-serif;
    font-weight: bold;
}

.menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    text-decoration: none;
    border: 2px solid cyan;
    padding: 8px 16px;
    border-radius: 20px;
    color: floralwhite;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

.menu ul li a:hover {
    color: #ff7200;
}

.search {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.srch {
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid #ff7200;
    color: #fff;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 20px;
    outline: none;
}

.btn {
    width: 100px;
    height: 40px;
    background: #ff7200;
    color: #fff;
    font-size: 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.2s ease;
    margin-left: 10px;
}

.btn:hover {
    color: #000;
}

.content {
    width: 100%;
    max-width: 1200px;
    color: #fff;
    margin: auto;
    padding: 20px;
}

.content h1 {
    font-size: 30px;
    font-family: 'Times New Roman';
    margin-bottom: 20px;
}

.content .par {
    font-family: Arial;
    line-height: 1.6;
}

.content .cn {
    display: inline-block;
    width: 160px;
    height: 40px;
    background: blue;
    color: black;
    font-size: 18px;
    text-align: center;
    line-height: 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s ease;
}

.content .cn:hover {
    background-color: #fff;
}

.form {
    width: 100%;
    max-width: 300px;
    background: yellowgreen;
    padding: 25px;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form h2 {
    text-align: center;
    color: #71c8eb;
    font-size: 22px;
    margin-bottom: 20px;
}

.form input {
    width: 100%;
    height: 35px;
    background: transparent;
    border: 1px solid #5994ec;
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
}

.btnn {
    width: 100%;
    height: 40px;
    background: #437adf;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.4s ease;
}

.btnn:hover {
    background: #fff;
    color: #ff7200;
}

.link {
    text-align: center;
    margin-top: 20px;
}

.link a {
    text-decoration: none;
    color: #50cef5;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
    }

    .menu ul {
        flex-direction: column;
        padding: 10px 0;
    }

    .menu ul li {
        margin: 10px 0;
    }

    .search {
        margin: 10px 0;
    }

    .content h1 {
        font-size: 24px;
    }

    .content .par {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 10px;
    }

    .logo {
        font-size: 20px;
    }

    .menu ul li {
        margin: 5px 0;
    }

    .content h1 {
        font-size: 20px;
    }

    .form {
        width: 90%;
        padding: 20px;
    }
}
