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

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #0e1827;
    color: #fff;
}

.logo {
    width: 150px;
    height: auto;
}

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

.header a {
    color: #fff;
    text-decoration: none;
}

.hero {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: #f5f5f5;
}

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

.hero-image {
    width: 300px;
    height: auto;
    padding: 20px;
    border-radius: 8%;
}

.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #f64a4c;
    color: #0e1827;
    text-decoration: none;
    border-radius: 4px;
}

.services {
    padding: 40px 20px;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    flex: 1 0 250px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.card .material-icons {
    font-size: 48px;
    color: #f64a4c;
}

.team {
    padding: 40px 20px;
    background: #f5f5f5;
    text-align: center;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.member {
    flex: 1 0 200px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}
.member p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
    text-justify: inter-word;
}

.member-img {
    width: 100px;
    border-radius: 50%;
}

.member .material-icons {
    display: inline-block;
    margin-top: 10px;
    color: #f64a4c;
}

.social-icons img {
    display: inline-block;
    width: 24px;
    height: auto;

}
.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.work {
    padding: 40px 20px;
    text-align: center;
}

.work-examples {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.example {
    flex: 1 0 300px;
}

.contact {
    background: #0e1827;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.contact a {
    color: #f64a4c;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-image {
    width: 80%;
    padding: 20px 0;
  }
}