*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  color: #555;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: rgb(196, 7, 54);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(rgb(102, 45, 145), rgb(211, 94, 176));
  width: 100%;
}

.header-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 12px 15px 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header-logo img {
  width: 360px;
  height: 123px;
  display: block;
}

.header-contact {
  color: #fff;
  font-size: 12px;
  text-align: right;
  line-height: 1.7;
  padding-top: 8px;
}

.header-contact table {
  border-collapse: collapse;
  margin-left: auto;
}

.header-contact td {
  color: #fff;
  font-size: 12px;
  padding: 1px 6px;
  text-align: left;
}

/* ===== EMAIL BAR ===== */
.email-bar {
  background: rgba(80, 20, 110, 0.55);
  padding: 5px 0;
}

.email-bar-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: right;
}

.email-bar a {
  color: #fff;
  font-size: 13px;
}

.email-bar a:hover {
  text-decoration: underline;
}

/* ===== MAIN LAYOUT ===== */
.page-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: flex-start;
  min-height: 400px;
}

/* ===== SIDEBAR ===== */
.sidebar {
  width: 25%;
  flex-shrink: 0;
  padding: 20px 20px 20px 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 3px 0 3px 14px;
  position: relative;
}

.sidebar ul li::before {
  content: '\25E6';
  position: absolute;
  left: 0;
  color: #888;
  font-size: 11px;
  top: 3px;
}

.sidebar ul li a {
  color: rgb(196, 7, 54);
  font-size: 13px;
  font-family: Verdana, Geneva, sans-serif;
  text-decoration: none;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}

/* Sub-items */
.sidebar ul ul {
  margin-left: 12px;
}

.sidebar ul ul li::before {
  content: '\25E6';
  font-size: 10px;
}

.sidebar ul ul li a {
  font-size: 12px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  width: 75%;
  padding: 20px 0 20px 0;
}

/* ===== HOMEPAGE: TOP IMAGE ROW ===== */
.top-images {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.top-img-box {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  overflow: hidden;
}

.top-img-box img {
  display: block;
}

.img-label-blue {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(28, 107, 185);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  font-family: Verdana, Geneva, sans-serif;
  padding: 5px 16px;
  border: 2px solid #aac6e8;
  white-space: nowrap;
  text-align: center;
}

/* ===== DIVIDER ===== */
.img-divider {
  border: none;
  border-top: 1px solid #bbb;
  margin: 10px 0 12px 0;
}

/* ===== HOMEPAGE: SERVICE IMAGE ROW ===== */
.service-images {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.svc-img-box {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  overflow: hidden;
}

.svc-img-box img {
  display: block;
}

.img-label-green {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(91, 155, 63);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  font-family: Verdana, Geneva, sans-serif;
  padding: 8px 4px;
  text-align: center;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #ccc;
}
.breadcrumb a {
  color: rgb(196, 7, 54);
  text-decoration: underline;
}

/* ===== INNER PAGE CONTENT ===== */
.page-content {
  padding: 10px 0 20px 0;
}

.page-content h2 {
  color: rgb(196, 7, 54);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-content p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: rgb(196, 7, 54);
}

.page-content .page-img {
  float: right;
  margin: 0 0 16px 20px;
  width: 240px;
  height: auto;
}

/* ===== TEAM PAGE ===== */
.team-member {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.team-member img {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}

.team-info p {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-columns {
  max-width: 1170px;
  margin: 0 auto;
  padding: 24px 15px 40px;
  display: flex;
  gap: 40px;
}

.contact-left {
  width: 40%;
}

.contact-right {
  width: 60%;
}

.contact-left h3,
.contact-right h3 {
  color: rgb(102, 45, 145);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.contact-left p {
  color: rgb(196, 7, 54);
  margin-bottom: 10px;
  line-height: 1.6;
}

.contact-right p {
  color: rgb(196, 7, 54);
  margin-bottom: 10px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  max-width: 400px;
  padding: 7px 10px;
  border: 1px solid #ccc;
  font-size: 13px;
  font-family: Verdana, Geneva, sans-serif;
  margin-bottom: 8px;
  display: block;
}

.contact-right textarea {
  resize: vertical;
}

/* Contact form */
.form-row {
  margin-bottom: 10px;
}
.form-row label {
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
  color: #555;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  max-width: 420px;
  padding: 5px 8px;
  border: 1px solid #ccc;
  font-size: 13px;
  font-family: Verdana, Geneva, sans-serif;
}
.form-row textarea {
  height: 100px;
  resize: vertical;
}
.btn-submit {
  background: rgb(102, 45, 145);
  color: #fff;
  border: none;
  padding: 7px 22px;
  font-size: 13px;
  font-family: Verdana, Geneva, sans-serif;
  cursor: pointer;
}
.btn-submit:hover {
  background: rgb(80, 30, 115);
}

/* ===== FOOTER ===== */
.page-wrap {
  flex: 1;
}

.site-footer {
  background: linear-gradient(rgb(211, 94, 176), rgb(102, 45, 145));
  text-align: center;
  padding: 16px 15px;
  color: #fff;
  font-size: 12px;
  margin-top: 0;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
