* {
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  flex-wrap: wrap;
  gap: 40px;
}

.logo {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

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

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
}

.hero {
  position: relative;
  background: url('top-image.jpg') no-repeat center center / cover;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 0 20px;
}

.hero-overlay {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.hero-main {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.hero-sub {
  font-size: 1.8rem;
  color: #eee;
}


section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
}

#about {
  background-color: #f7f7f7;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-wrapper img {
  width: 250px;
  flex-shrink: 0;
}

.about-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  text-align: left;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
}


.service-section {
  background-color: #ddd;
  padding: 60px 20px;
  text-align: center;
}

.service-section h2 {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 40px;
  color: #111;
}

.service-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.service-item {
  width: 250px;
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
}

.works-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.work-item {
  width: 300px;
  text-align: center;
  background-color: #eee;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.work-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.work-item p {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.work-item:hover {
  transform: translateY(-5px);
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.price-item {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 30px;
  text-align: center;
  width: 180px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.price-item:hover {
  transform: translateY(-5px);
}

.price-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.price-item p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #444;
}

.price-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: #666;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav svg {
  width: 24px;
  height: 24px;
  fill: #333;
  margin-bottom: 5px;
}

footer hr {
  width: 80px;
  height: 2px;
  background: #000;
  border: none;
  margin: 10px auto 20px;
}

footer .copyright {
  color: #333;
}

@media (max-width: 768px) {
.navbar {
flex-direction: column;
align-items: flex-start;
padding: 10px 20px;
top: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1000;
}

@media (max-width: 980px) and (min-width: 769px) {
  .hero {
    padding-top: 200px;
    padding-left: 80px;
    padding-right: 80px;
  }
}

.logo {
font-size: 1.2rem;
margin-bottom: 0;
color: #fff;
}

nav ul {
gap: 10px;
width: 100%;
padding: 0;
margin: 0;
}

nav a {
font-size: 0.9rem;
color: #fff;
}

.hero {
padding-top: 100px;
padding-left: 35px;
padding-right: 35px;
text-align: left;
}

.hero-main {
font-size: 2rem;
text-align: left;
}

.hero-sub {
font-size: 1.2rem;
text-align: left;
}

.price-grid {
flex-direction: column;
align-items: center;
}

.price-item {
width: 90%;
}
}
