* {
    margin: 0;
    padding: 0;
    border-spacing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav .logo {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}
nav ul li {
    cursor: pointer;
    color: #333;
    font-weight: bold;
}
nav ul li:hover {
    color: green;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
    background-color: #eee;
}

.hero h1 {
    font-size: 52px;
    text-align: center;
    line-height: 1;
}

.hero h1 span {
    color: green;
}

.hero p {
     color: orange;
     padding-top: 20px;
}

.section {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding-top: 15px;
}

.about-image {
    border-radius: 15px;
}

.about-content {
    background-color: #333;
    text-align: justify;
    width: 50%;
    height: 300px;
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#nexus-text {
    font-weight: 500;
    font-size: 25px;
    text-decoration: underline;
}

/* Section Service */
.section-services {
    background-color: rgb(101, 241, 101);
    width: 82%;
    margin-left: 115px;
    margin-top: 20px;
    border-radius: 10px;
    /* text-align: justify; */
    padding: 20px;
    text-transform: uppercase;
}
.about-button{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    
}

.about-button:hover{
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;

}
