/* Reset */

.image-box {
  margin: 20px 0;
  text-align: center;
}

.image-box img {
  max-width: 100%;
  width: 400px;
  height: auto;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 50px;
  height: auto;
}

.logo h2 {
  font-size: 18px;
  margin-bottom: 2px;
}

.logo p {
  font-size: 14px;
  color: #555;
}

.social-icons a img {
  width: 24px;
  margin-left: 10px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  background-color: #003d1f;
  padding: 15px 0;
  gap: 30px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-right: 1px solid white;
  padding-right: 15px;
}

.navbar a:last-child {
  border-right: none;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: #888;
  padding: 15px 40px;
}

/* Main Content */
.content {
  padding: 20px 40px;
  text-align: center;
}

.content h1 {
  font-size: 32px;
  color: #1b1b3a;
}

.subtitle {
  font-size: 16px;
  margin: 10px 0 20px;
  color: #555;
}

.result-box {
  background-color: #f9f9f9;
  border-left: 5px solid #007b5e;
  padding: 20px;
  margin-bottom: 30px;
}

.image-box {
  margin: 20px 0;
}

.image-box img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

.help-text {
  font-size: 14px;
  margin-top: 25px;
}

/* Footer */
.footer {
  background-color: #2f2f2f;
  color: #fff;
  padding: 30px 40px 10px;
  margin-top: 50px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background-color: #003d1f;
  color: #ccc;
  font-size: 13px;
  margin-top: 20px;
}
