body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f5f5f5;
  color: #1e1e1e;
}

pre{
  font-size: 30px;
  font-family: 'Times New Roman', Times, serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 60px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 30px;
}

.logo {
  color: #e67e22;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #e67e22;
  font-weight: 500;
}

nav a.active {
  color: #1a237e;
  border-bottom: 2px solid #1a237e;
}

section {
  padding: 60px 80px;
}

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

.home-img img {
  width: 350px;
  border-radius: 8px;
}

.home-text h1 {
  color: #e67e22;
  font-size: 2rem;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 80px;
}
/*
.about .text,
.about .text-objek {
  flex: 1;
}
  */

.about .image img {
  width: 400px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

ul{
  font-size: 20px;
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
}

/* Responsif di HP */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about .image img {
    width: 80%;
  }
}


.about-page {
  background: #0d2043;
  color: white;
}

.work-page {
  background: #e67e22;
  color: white;
}

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

.container {
  display: flex;
  background-color: white;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.left img {
  width: 80%;
  border-radius: 5px;
  background-color: #002f5f;
  padding: 10px;
}

.right {
  flex: 1;
  padding: 20px;
}

.right h2 {
  color: #f57c00;
}

.contact-box {
  background-color: #002f5f;
  color: white;
  padding: 15px;
  margin: 20px 0;
  border-radius: 5px;
}

.contact-box p {
  margin: 10px 0;
}

.right h3 {
  color: #f57c00;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 32px;
  height: 32px;
}
