body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
    position: relative;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 20px 0 20px;
    position: relative;
}

header ul ul {
    display: none;
    position: absolute;
    background: #333;
    padding: 0;
    z-index: 1000;
}

header ul li:hover > ul {
    display: block;
}

header ul ul li {
    width: 200px;
    border-bottom: 1px solid #444;
}

header ul ul li a {
    color: #fff;
}

.logo {
    float: left;
}

nav {
    float: right;
    margin-top: 10px;
}

.hero {
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.hero .carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero .carousel-image {
    width: 100%;
    height: auto;
    display: none;
}

.hero .carousel-image.active {
    display: block;
}

.hero h1 {
    margin: 0;
    padding: 20px;
    font-size: 40px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #0779e4;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 20px 0;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-content, .services-content, .blog-posts, .contact-content {
    display: flex;
.about-content, .services-content, .blog-posts, .contact-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.about-content div, .services-content div, .blog-posts div, .contact-content form, .contact-content .contact-info {
    flex: 1;
    margin: 10px;
    padding: 10px;
}

.contact-content form label, .contact-content form input, .contact-content form textarea {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.contact-content form input, .contact-content form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

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

.contact-content .contact-info {
    padding: 20px;
    background: #f4f4f4;
    border-radius: 5px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.social-links img {
    width: 30px;
    margin: 0 10px;
    vertical-align: middle;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: flex;
        flex-direction: column;
    }

    nav ul ul {
        position: static;
    }

    .about-content, .services-content, .blog-posts, .contact-content {
        flex-direction: column;
    }
}
