body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

.logobox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px 0;
}

.logo {
    border-radius: 50%;
    max-width: 300px;
    max-height: 300px;
}

.navbarbox {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    margin-bottom: -20px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    font-size: 1.25rem;
}

.navbar a {
    color: black;
    text-decoration: none;
    margin: 0 2rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: red;
}

.navbar a:visited {
    color: black;
}

/* Responsive Design */
@media (max-width: 600px) {
    .header {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
    }

    .navbar a {
        margin: 0.75rem 0;
    }

    main {
        flex-direction: column;
    }
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.text-img1 {
    display: flex;
    align-items: space-between;
    width: 100%;
}

.text1 {
    max-width: 50%;
}

.img1 {
    height: auto;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

main {
    padding: 25px;
}

.feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
    align-items: center;
}

.formgroup {
    display: flex;
    flex-direction: row;
}

.formgroup label {
    display: flex;
    width: 30%;
    margin-right: 10px;
    justify-content: center;
}

.formgroup input {
    height: 30px;
    width: 300px;
    padding: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.formgroup textarea {
    height: 30px;
    width: 300px;
    padding: 10px;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
    min-height: 5rem;
}

.submit-container {
    display:flex;
    justify-content: right;
    width: 100%;
}

.feedback input[type="submit"] {
    width: auto;
    max-width: 200px;
    padding: 10px 20px;
    font-size: 1rem;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    align-self: center;
}

@media (max-width: 900px) {
    .text-img1 {
        flex-direction: column;
        align-items: center;
    }

    .text1 {
        max-width: 100%;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .img1 {
        height: auto;
        max-width: 400px;
        margin: 0;
        align-items: center;
    }
}
