body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #6C3A9A;
    /* Funky purple */
    color: #FFFFFF;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #512A75;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFD700;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    height: calc(100vh - 80px);
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-text button {
    background-color: #FFD700;
    color: #6C3A9A;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.hero-text button a {
    color: #6C3A9A;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.hero-text button:hover {
    transform: scale(1.1);
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

.features {
    background-color: #7747B2;
    padding: 50px 10%;
}

.features h2 {
    text-align: center;
    margin-bottom: 30px;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature {
    background-color: #6C3A9A;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.feature img {
    width: 60px;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
}

.languages {
    background-color: #7747B2;
    padding: 50px 10%;
}

.languages h2 {
    text-align: center;
    margin-bottom: 30px;
}

.languages-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.language {
    background-color: #6C3A9A;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.language img {
    width: 60px;
    margin-bottom: 15px;
}

.language h3 {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    background-color: #512A75;
    padding: 20px;
    color: #FFFFFF;
}

.develop-banner {
    text-align: center;
    font: center;
    height: 35px;
    font-size: 35px;
    color: #512A75;
    background-color: #FFD700;
}