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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3 {
    margin: 0 0 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #f8f8f8;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.hero {
    background: url('https://source.unsplash.com/1600x600/?nature,technology') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 20px;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.about {
    padding: 60px 10%;
    text-align: center;
}

.about-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: #f1f1f1;
    padding: 20px;
    flex: 1;
    border-radius: 8px;
}

.services {
    padding: 60px 10%;
    background-color: #f9f9f9;
    text-align: center;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background-color: white;
    padding: 20px;
    flex: 1;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact {
    padding: 60px 10%;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

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

.contact-form button {
    background-color: #ff7f50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 10%;
}

.footer .socials {
    margin-top: 10px;
}

.footer .socials a {
    margin: 0 10px;
    color: white;
}
