/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Main section styles */
main {
    padding: 20px;
}

.contact-section,
.follow-us-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.contact-section h2,
.follow-us-section h2 {
    color: #333;
    margin-bottom: 10px;
}

.contact-section p {
    margin-bottom: 15px;
}

.contact-section form label {
    display: block;
    margin-bottom: 5px;
}

.contact-section form input,
.contact-section form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-section form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-section form button:hover {
    background-color: #555;
}

.follow-us-section .social-media-icons {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.follow-us-section .social-media-icons li {
    margin: 0 10px;
}

.follow-us-section .social-media-icons li a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}
