body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* ===== HEADER ===== */
header {
  background: #222;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  margin: 0;
  font-size: 1.8rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}
nav a:hover {
  color: #ffd700;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 400px;
}
.hero-bg {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  background: #ffd700;
  color: #222;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #e6c200;
}

/* ===== SECTION ===== */
.section {
  padding: 60px 20px;
  text-align: center;
}
.section.alt {
  background-color: #e8e8e8;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 300px;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 15px;
}

/* ===== CONSULTING ===== */
.consulting-img {
  width: 80%;
  max-width: 600px;
  margin: 20px auto 0;
  display: block;
  border-radius: 10px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: #222;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.contact h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact p {
  margin-bottom: 20px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffd700;
  background: #fff;
  color: #000;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button {
  display: inline-block;
  background: #ffd700;
  color: #222;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #e6c200;
}

.company-contact {
  margin-top: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}
.company-contact a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}
.company-contact a:hover {
  color: #e6c200;
  text-decoration: underline;
}



/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* ===== SPACER ===== */
.spacer {
  height: 10px;
}
