<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #6C584E;
  background-color: #FAF9EF;
}

h1, h2, h3 {
  margin: 10px 0;
  color: #A2AF7F;
}

/* Header Styles */
header {
  background-color: #261505;
  color: #FFFFFF;
  padding: 10px 0;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

header .nav-links {
  list-style: none;
  display: flex;
}

header .nav-links li {
  margin: 0 15px;
}

header .nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}

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

header .hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

header .hamburger-menu span {
  height: 3px;
  width: 25px;
  background: #FFFFFF;
  margin-bottom: 5px;
  border-radius: 5px;
}

/* Hero Section Styles */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%); /* Darken the image for better text visibility */
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10; /* Ensure the logo stays on top */
}

.hero-logo .site-logo {
  max-height: 150px; /* Increase logo size */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the text */
  z-index: 20; /* Ensure the text is above the image */
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Add a shadow for better readability */
  color: #f9f9f9;
}

.hero-text p {
  font-size: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Add a shadow for better readability */
  color: #f9f9f9;
}

/* Content Section Styles */
.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px;
  background-color: #b0afaf;
  margin: 1px;
  border-radius: 8px;
}

/* Left and Right Container Styles */
.left-container, .right-container {
  width: 25%;
  padding: 20px;
  background-color: #8d8d69;
  color: rgb(245 239 244);
  border-radius: 8px;
}

.calculator-container {
  width: 50%;
  padding: 20px;
  background: linear-gradient(135deg, #5b5662, #8c77b0);
  border-radius: 8px;
  color: #FFFFFF;
}

/* Calculator Form Styles */
.calculator form {
  display: flex;
  flex-direction: column;
}

.calculator label {
  margin: 10px 0 5px;
  color: #FFFFFF;
}

.calculator input,
.calculator select {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #6C584E;
}

.calculator input:focus,
.calculator select:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(123, 31, 162, 0.8); /* Purple glow on focus */
}

.calculator button {
  padding: 10px;
  background-color: #5e35b1;
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.calculator button:hover {
  background-color: #7b1fa2; /* Lighter purple on hover */
}

#result {
  margin-top: 20px;
}

#result h3 {
  margin: 5px 0;
  color: #FFFFFF; /* White color for result text */
}

/* Form Step Styles */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Footer Styles */
footer {
  background-color: #261505;
  color: #FFFFFF;
  text-align: center;
  padding: 20px 0;
}

footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

footer .social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
}

footer .social-links li {
  margin: 0 15px;
}

footer .social-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 18px;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
  }

  .left-container,
  .right-container,
  .calculator-container {
    width: 100%;
    margin-bottom: 20px;
  }

  header .nav-links {
    display: none;
    flex-direction: column;
    background-color: #261505;
  }

  header .nav-links.active {
    display: flex;
  }

  header .hamburger-menu {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.25rem;
  }
}
</pre></body></html>