/* Basic reset for consistent styling */
body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f4f4f4;
}

/* General wireframe styling */
.logo, .navbar, .hero-section, .design-section, .footer {
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 10px; /* Add some spacing between sections */
}

/* Header section */
#header {
    background-color: #333; /* Dark header color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo {
    width: 150px;
    height: 60px;
    background-color: #6a6a6a; /* Gray for logo */
    border: none;
}

.navbar {
    width: 60%;
    height: 60px;
    background-color: #888; /* Lighter gray for navbar */
    border: none;
}

/* Main content sections */
#main-content {
    padding: 10px;
}

.hero-section {
    height: 300px;
    background-color: #4CAF50; /* Green for hero section */
}

.design-section {
    height: 200px;
    background-color: #2196F3; /* Blue for design section */
}

/* Footer section */
#footer {
    height: 100px;
    background-color: #555; /* Darker gray for footer */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}