* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
#header {
    height: 100vh;
    background-image: url(background.png);
    background-position: center;
    background-size: cover;
}
.container1 {
    margin-left: 100px;
    margin-right: 100px;
}
.logo {
    margin-top: 30px;
    width: 100px;
}
.header-text {
    max-width: 350px;
    margin-top: 140px;
}
h1 {
    font-size: 34px;
}
.square {
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: #f57c92;
    margin: 15px 0;
}
.btn {
    padding: 18px 40px;
    background: transparent;
    outline: none;
    border: 2px solid #f57c92;
    font-weight: bold;
    cursor: pointer;
}
p {
    font-size: 1rem;
    line-height: 25px;
    font-weight: bold;
    color: #777;
    width: 90%;
}
.header-text button {
    margin-top: 20px;
    margin-bottom: 60px;
}
.header-text button:hover {
    background-color: #b7364e;
}
.line-1,
.line-2,
.line-3 {
    width: 15px;
    height: 15px;
    background-color: #f57c92;
    display: inline-block;
}
#sidenav {
    width: 250px;
    height: 100vh;
    position: fixed;
    right: -250px;
    top: 0;
    background-color: #f57c92;
    z-index: 2;
    transition: .5s;
}
nav ul li {
    list-style: none;
    margin: 50px 20px;
}
nav ul li a {
    text-decoration: none;
    color: #fff;
}
#menuBtn {
    width: 50px;
    position: fixed;
    right: 65px;
    top: 35px;
    z-index: 2;
    cursor: pointer;
}
#about {
    padding: 100px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.left {
    flex-basis: 50%;
}
.left img {
    width: 100%;
}
.right {
    flex-basis: 50%;
}
.about-text h1 {
    text-align: center;
    color: #f57c92;
    cursor: pointer;
}
.about-text h1:hover {
    color: black;
}
.about-text p {
    line-height: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-left: 30px;
}
.about-text p:hover {
    color: #b7364e;
}
#content {
    display: flex;
    width: 80%;
    gap: 2rem;
    align-items: center;
    margin-left: 140px;
    margin-bottom: 50px;
}
.first img,
.second img,
.third img {
    width: 100px;
    height: 100px;
}
#content button {
    margin-right: 250px;
}
.but {
    padding: 18px 40px;
    background: transparent;
    outline: none;
    border: 2px solid #f57c92;
    font-weight: bold;
    cursor: pointer;
}
.container {
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    margin-left: 30px;
}
.container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container .content .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}
.content .left-side::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}
.content .left-side .details {
    margin: 14px;
    text-align: center;
}
.content .left-side .details i {
    font-size: 30px;
    color: #3e2093;
    margin-bottom: 10px;
}
.content .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
    font-size: 14px;
    color: #afafb6;
}
.container .content .right-side {
    width: 75%;
    margin-left: 90px;
}
.content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: #3e2093;
}
.right-side .input-box {
    height: 55px;
    width: 100%;
    margin: 12px 0;
    width: 80%;
}
.right-side .input-box input,
.right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #f0f1f8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}
.right-side .message-box {
    min-height: 110px;
}
.right-side .input-box textarea {
    padding-top: 6px;
}
.right-side .button {
    display: inline-block;
    margin-top: 12px;
}
.right-side .button input[type="submit"] {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #3e2093;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button input[type="submit"]:hover {
    background: #5029bc;
}
.footer-content p {
    text-align: center;
}

/* Media Queries for Responsive Design */
@media (max-width: 770px) {
    .container1 {
        margin-left: 50px;
        margin-right: 50px;
    }
    #content {
        width: 90%;
        margin-left: 50px;
        flex-direction: column;
        align-items: flex-start;
    }
    #content button {
        margin-right: 0;
        margin-top: 20px;
    }

    .header-text {
        max-width: 300px;
        margin-top: 100px;
    }
    h1 {
        font-size: 30px;
    }
    #content {
        margin-left: 30px;
    }
    .container .content {
        flex-direction: column;
        align-items: flex-start;
    }
    .container .content .left-side {
        width: 100%;
        margin-bottom: 20px;
    }
    .container .content .right-side {
        width: 100%;
        margin-left: 0;
    }
    .container1 {
        margin-left: 20px;
        margin-right: 20px;
    }
    #content {
        width: 95%;
        margin-left: 20px;
        gap: 1rem;
    }
    .header-text {
        max-width: 250px;
        margin-top: 80px;
    }
    h1 {
        font-size: 26px;
    }
    #about {
        padding: 80px 0;
        width: 90%;
    }
    .left, .right {
        flex-basis: 100%;
    }
    .container .content .left-side::before {
        display: none;
    }

    #menuBtn {
        right: 50px;
    }
    .container1 {
        margin-left: 10px;
        margin-right: 10px;
    }
    .header-text {
        margin-top: 60px;
    }
    h1 {
        font-size: 22px;
    }
    .btn, .but {
        padding: 12px 24px;
        font-size: 14px;
    }
    #content {
        width: 100%;
        margin-left: 10px;
        gap: 0.5rem;
    }
    .first img, .second img, .third img {
        width: 50px;
        height: 50px;
    }
    .container {
        padding: 20px;
        margin-left: 0;
    }
    .container .content .right-side {
        margin-left: 0;
    }
    .container .content .left-side .details i {
        font-size: 24px;
    }
    .container .content .left-side .details .topic {
        font-size: 16px;
    }
    .container .content .right-side .topic-text {
        font-size: 20px;
    }
    .footer-content p {
        font-size: 14px;
    }

}
