/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header Styles */
header {
    background: #7851A9;
    color: white;
    padding: 10px 0;
}

header .logo {
    height: 50px;
    vertical-align: middle;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 40px 0;
    text-align: center;
}

.features h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.features .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.features .feature-item {
    width: 30%;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.features .feature-item img {
    height: 50px;
    margin-bottom: 10px;
}

.features .feature-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin-right: 20px;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer .social-media {
    margin-top: 10px;
}

footer p {
    margin: 10px 0 0;
}
