/* General body and font */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

/* Header */
header.header-left {
  background: #111;
  color: #fff;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

header.header-left .logo-title {
  display: flex;
  align-items: center;
  gap: 20px;
}

header.header-left .logo-title .logo {
  max-width: 100px;
}

/* Navigation */
header nav {
  margin-top: 15px;
}

header nav a {
  color: #ffd700;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Hero section */
.hero {
  background: linear-gradient(90deg, #0073e6, #00ccff);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Services preview */
.services-preview, .services {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
}

.services-preview ul, .services ul {
  list-style-type: none;
  padding: 0;
}

.services-preview li, .services li {
  margin: 10px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ffd700;
  color: #000;
  text-decoration: none;
  margin-top: 15px;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #ffea00;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* FAQ section styling */
.faq {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq .question {
  font-weight: bold;
  font-size: 1.1em;
  color: #0073e6;
  margin-top: 20px;
}

/* Contact page styling */
.contact {
  max-width: 700px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
  line-height: 1.6;
}

.contact h2 {
  margin-bottom: 20px;
}

.contact h3 {
  margin-top: 20px;
}

.contact form input,
.contact form textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin: 5px 0 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact form input[type="submit"] {
  width: auto;
  background: #ffd700;
  cursor: pointer;
}

/* About page styling */
.about {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.about h2, .about h3 {
  margin-top: 20px;
}

.about iframe {
  margin-top: 15px;
  border: 0;
}
