* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: relative;
}

.left {
    padding: 1%;
    width: 50%;
    background-color: white;

}

.navbar {
    height: 10%;
    padding: 2%;
    display: flex;
    align-items: center;
    gap: 10%;
}

.logo {
    padding: 10px;
    height: 60px;
    align-self: center;
    font-weight: 900;
    color: rgb(18, 53, 44);
}


.searchbar {
    height: 100%;
    width: 300px;
    background-color: #dbdbdb;
    padding: 3%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.5;
}

.contents {
    height: 90%;
    width: 100%;
    padding: 5%;
    display :flex;  
}
.content1{
    height: 100%;
    width: 30%;
     display: flex;
    align-items: center;
    justify-content: center;
}
.content1 h1{
    transform: rotate(-90deg);
    white-space: nowrap;

}
.content2{
    height: 100%;
    width: 70%;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.ul{
    color: #bd3d32;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    letter-spacing: 1px;
    
}
.ul li{

    padding-bottom: 20px;
    width: 45%;
    border-bottom: 1px solid black;
}
.ul li:nth-child(6){
    border:none;
}

.ul li span{
    color: black;
    font-weight: 600;
}
.ul li p{

    color: #161d1c;
    font-size: 18px;
}

.image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
    width: 300px;
}


.right {
    width: 50%;
    min-height: 100vh;
    background-color: #bd3d32;
    padding: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.navbar2 {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 120%;
    color: white;
}

.navbar2 a {
    text-decoration: none;
    color: white;
    font-weight: 200;
}

section {
    height: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section .heading {
    color: white;
    font-weight: 100;
    font-size: 25px;
    position: relative;
}

section .info {
    height: 300px;
    width: 350px;
    display: flex;
    gap: 10px;
}

.info img {
    width: 50%;
    padding: 40px 0px;
}

.info .info2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
    justify-content: space-evenly;
}

.info2 .sub-info {
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

section h3 {
    align-items: left;
    padding: 10px;
    color: wheat;
    font-size: 20px;
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: white;
    padding: 10px;
}

.toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle {
    width: 32px;
    height: 18px;
    background: #e7b7b2;
    cursor: pointer;
    border-radius: 50px;
    position: relative;
}

.toggle::before {
    content: "";
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
}

section button{
    padding: 10px;
    background-color: #d8bc91;
    border-radius: 10px;
    border: none;
    width: 200px;
}