* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f3d5;
  padding: 20px;
}

.logo img {
  width: 60px;
  height: auto;
}

.header-text {
  text-align: right;
}

.header-text h1 {
  font-size: 24px;
  font-weight: bold;
}

.header-text p {
  font-size: 14px;
  margin-top: 5px;
}

/* Main Featured Image */
.main-image img {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}

/* Featured Work */
.featured {
  background: #000;
  color: #fff;
  padding: 30px;
  text-align: left;
}

.featured h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.work-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.work-item {
  text-align: center;
}

.work-item img {
  width: 200px;
  height: auto;
  border-radius: 4px;
}

.work-item p {
  margin-top: 10px;
  font-weight: bold;
}