* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

header {
  background: #111;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.hero {
  background: url("img/tattoo-bg.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero .btn {
  background: #ff3333;
  color: #fff;
  padding: 12px 25px;
  border: none;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  border-radius: 5px;
}

.slogan {
  background: #eee;
  padding: 40px;
  text-align: center;
  font-size: 24px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.services .column {
  flex: 1;
  padding: 20px;
  min-width: 250px;
}

.services img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #ddd;
}

.contact form,
.contact .contact-info {
  flex: 1;
  min-width: 300px;
  margin: 10px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

form button {
  padding: 10px 20px;
  background: #111;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
}
