body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

header .logo {
    font-size: 1.5rem;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.main-banner {
    text-align: center;
    padding: 2rem;
    background: #eee;
}

.main-banner img {
    max-width: 100%;
    height: auto;
}

.main-banner h1 {
    margin: 1rem 0;
}

.intro, .featured, #about, #blog, #contact {
    padding: 2rem;
}

.featured {
    display: flex;
    justify-content: space-around;
}

.feature {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ccc;
    width: 30%;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact form label, 
#contact form input, 
#contact form textarea, 
#contact form button {
    margin-bottom: 1rem;
}
.small-image {
    width: 15%;  /* This makes the image 1/4 of its original size */
    height: auto;  /* Maintains the aspect ratio */
}

#contact form input, 
#contact form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact form button {
    padding: 0.5rem;
    border: none;
    background: #333;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

#contact .social-links {
    margin-top: 1rem;
}

#contact .social-links a {
    margin-right: 1rem;
    text-decoration: none;
    color: #333;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
}
