* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #fce4ec;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
#wrapper {
    width: 1000px; 
    background-color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.header {
    background-color: #f06292; 
    color: white;
    display: flex;
    justify-content: center; 
    position: relative;
    z-index: 100;
}

.menu-item {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: bold;
    border-right: 1px solid rgba(255,255,255,0.2);
    position: relative;
    transition: 0.3s;
    font-size: 15px;
}

.menu-item:hover {
    background-color: oldlace;
    color: #333;
}
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #f06292;
    list-style: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.submenu li {
    padding: 12px;
    color: white;
    border-bottom: 1px solid #f8bbd0;
    font-weight: normal;
}

.submenu li:hover {
    background-color: oldlace;
    color: #333;
}

.dropdown:hover .submenu {
    display: block;
}
.container {
    display: flex;
    height: 500px;
}
.sidebar {
    flex: 1;
    border-right: 1px solid #f8bbd0;
    padding: 20px;
}
.content-wrapper {
    flex: 3;
    display: flex;
    flex-direction: column;
}
.top-content {
    flex: 1;
    border-bottom: 1px solid #f8bbd0;
    padding: 15px;
}

.top-content-items {
    display: flex;
    gap: 15px;
}

.top-item {
    flex: 1;
    border: 1px solid #f8bbd0;
    padding: 10px;
    background: #fff;
}

.top-item h4 { color: #f06292; margin-bottom: 5px; font-size: 14px; }
.top-item p { font-size: 13px; color: #666; }

.main-content {
    flex: 2;
    padding: 20px;
}
.footer {
    background-color: #424242;
    color: white;
    padding: 25px;
}

.info-box h3 { color: #f06292; margin-bottom: 8px; }