ul, li, body, p {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fddfee;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin:0 40px;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #ffffff;
    cursor: pointer;
}

.wrapin {
    flex: 1;
}

header {
    height: 55px;
    background-color: #ffffff;
}

.nav {
    height: 55px;
    background-color: #fe9eb5; 
    display: flex;
    padding: 0;
    margin: 0;
}

.nav li {
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    width: 20%;
    position: relative;
    transition: background-color 0.3s ease;
}

.nav li:hover {
    background-color: #ef77b3; 
}

.nav li a {
    color: #ffffff;
    display: block flex;
    justify-content: center;
    align-items: center;
}

.nav li:hover a {
    color: #ffffff;
}

.nav .dropdown {
    position: relative;
}

.nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fe9eb5;
    width: 100%;
}

.nav .dropdown-menu li {
    text-align: center;
    height: 55px;
    width: 100%;
}

.nav .dropdown-menu li a {
    font-size: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 100%;
}

.nav .dropdown-menu li a:hover {
    color: #ffffff;
    background-color: #ef77b3; 
}

.nav .dropdown:hover .dropdown-menu {
    display: block;
}

footer {
    background: #fe9eb5; 
    text-align: center;
    line-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-top: 60px;
}

h2, h3 {
    color: #e87e97; 
}

.container {
    justify-content: space-between;
}

.container {
    padding: 10px 30px 0 30px;
    flex: 1;
}

.content {
    gap: 30px;
}

.content .text {
    flex-basis: 60%;
}

.content h2 {
    margin-top: 20px;
}


.part2 {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 35px;
}

.part2 .text-img {
    height: 160px;
    object-fit: contain;
}

.part2 .photo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    flex: 2;
}

.part2 .photo li {
    flex-basis: calc((100% - 2 * 20px) / 3);
    height: 260px;
}

.part2 .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}