/* GENERAL STYLES */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

h1, h2, h3 {
  margin-bottom: 15px;
  color: #222;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

/* HERO SECTION */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(to right, #1e1e1e, #333);
  color: #fff;
  padding: 80px 20px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff6600;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
}

.hero .btn:hover {
  background: #e65c00;
}

.hero-img img {
  max-width: 100%;
  border-radius: 8px;
}

/* SERVICES */
.services {
  text-align: center;
}

.service-blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 30px;
}

.service {
  flex: 1;
  min-width: 250px;
  margin: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.services-img img {
  max-width: 400px;
  margin-top: 30px;
}

/* VALUE BLOCK */
.value {
  text-align: center;
  background: #fff7f0;
  border-top: 3px solid #ff6600;
}

.value ul {
  margin-top: 20px;
}

.value li {
  margin-bottom: 8px;
}

.value-img img {
  max-width: 400px;
  margin-top: 30px;
}

/* WHY WORK WITH US */
.why {
  background: #f2f2f2;
  text-align: center;
}

.why ul {
  margin-top: 20px;
}

.why-img img {
  max-width: 400px;
  margin-top: 30px;
}

/* CONTACT */
.contact {
  text-align: center;
  background: #fff7f0;
  border-top: 3px solid #ff6600;
}

.contact a {
  color: #ff6600;
  font-weight: bold;
}

.contact-img img {
  max-width: 150px;
  margin-top: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #1e1e1e;
  color: #fff;
  font-size: 0.9rem;
}
