body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

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

header {
    background: #5C2D91;
    color: white;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px; /* Adjusts the logo's maximum width */
    height: auto; /* Maintains aspect ratio */
}

nav .nav-links {
    list-style: none;
}

nav .nav-links li {
    display: inline;
    margin-left: 20px;
}

nav .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-color: #7F4CAF;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: white;
    color: #7F4CAF;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.about, .services, .contact {
    background: white;
    padding: 50px 0;
    margin: 20px 0;
}

footer {
    background: #5C2D91;
    color: white;
    text-align: center;
    padding: 20px 0;
}
