:root {
    --primaryText: var(--black);
    --dividerFill: var(--gray-80);
    --primaryBackground: var(--white);
    --_ZRwsK5rk: var(--spacing-09);
    --footerBackground: var(--gray-95);
    --lightPurpleBackground: var(--purple-90);
    --_QoH9QDoU: normal var(--trip-sans-medium) 32px/38px var(--ta-sans-serif);
    --_AmLphmSW: normal var(--trip-sans-regular) 16px/22px var(--ta-sans-serif);
    --secondaryText: var(--gray-20);
    --ta-sans-serif: "Irish Sans VF","Irish Sans",Arial,sans-serif;
    --trip-sans-medium: 700;
    --trip-sans-regular: 400;
    --white: #fff;
    --gray-20: #333;
    --gray-80: #e0e0e0;
    --gray-95: #f2f2f2;
    --purple-90: #f2ecf9;
    --overlays: 10104;
    --spacing-02: 8px;
    --spacing-03: 16px;
    --spacing-04: 24px;
    --spacing-05: 32px;
    --spacing-08: 64px;
    --spacing-09: 80px;
    --grid-spacing: 16px;
    --page-margin: 24px;
    --max-content-width: 1136px;
    --trip-ease: cubic-bezier(0.25,0.1,0,1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #eeeeee;
  color: #333;
}


header {
  background-color: #84bd70;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #5b8c3f; /* Darker shade for extra pop */
  transition: background-color 0.3s ease, transform 0.3s ease;
}

header:hover {
  transform: translateY(-5px); /* Adds a lift effect on hover */
  background-color: #7aa35c; /* Slightly darker shade for interaction */
}

header h1 {
  font-size: 2.5em;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 2px; /* Adds a modern touch with spacing between letters */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Light shadow for text */
  transition: transform 0.3s ease;
}

header h1:hover {
  transform: scale(1.05); /* Slightly enlarges the title on hover */
}


.content {
  display: flex;
  gap: var(--spacing-medium);
  flex-wrap: wrap; /* Allows content to stack on smaller screens */
  justify-content: center;
}

.text-section {
  max-width: 40%;
  height: auto;
  position: relative;
  padding: var(--spacing-04);
}
.main_first_div_first_section_third_div_header {
    font: var(--_QoH9QDoU);
    color: var(--primaryText);
}
.main_first_div_first_section_third_div_first_div {
    font: var(--_AmLphmSW);
    margin-top: var(--spacing-03);
    margin-bottom: var(--spacing-02);
    color: var(--secondaryText);
}
.bold-green {
  font-weight: bold;
  color: #019529;
}
.highlighted-sell {
  font-weight: 800;
  margin-top: var(--spacing-05);
  color: #019529;
  background-color: #F7F7F7;
  border-left: 4px solid #84bd70;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.pub-list-container {
  text-align: center;
  margin-top: var(--spacing-04);
  padding: var(--spacing-03);
  margin-bottom: var(--spacing-05);
}

.pub-list-box {
  display: inline-block;
  text-align: left;
  background-color: #f7f7f7;
  border: 1px solid var(--gray-80);
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 100%; /* Ensure it doesn't overflow */
}

.pub-list-box h3 {
  font-size: 1.1em;
  color: #333;
  font-weight: bold;
  margin-bottom: var(--spacing-02);
}

.pub-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.pub-list li {
  margin-bottom: 10px;
  font-weight: bold;
}

.pub-list a {
  display: block; /* Makes the entire area of the link clickable */
  padding: 8px 12px; /* Adds some padding for better clickability */
  text-decoration: none;
  color: #019529;
  font-size: 1em;
  background-color: #f7f7f7; /* Matches the background color for smooth design */
  border-radius: 5px; /* Rounded corners for links */
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.pub-list a:hover {
  background-color: #84bd70; /* Slightly darker background on hover */
  color: #fff; /* Change text color on hover */
  transform: translateY(-2px); /* Adds a lifting effect when hovered */
}

.pub-list a:active {
  transform: translateY(0); /* Removes the lift effect when clicked */
}

.pub-list a:focus {
  outline: none; /* Remove the default focus outline */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Adds a subtle focus effect for accessibility */
}


.main-image {
  max-width: 40%;
  height: auto;
  position: relative;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

h2, p {
  color: #333; /* Dark text to contrast nicely with the background */
  font-size: 1.1em;
}

h2 {
  margin-top: 20px;
  font-size: 1.5em;
}

p {
  margin-top: 10px;
}


/* Footer */
footer {
  background-color: --white;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}
.footer_logo {
  max-width: 150px; /* Adjust the size as needed */
  height: auto;
}

/* Mobile optimization */
@media screen and (max-width: 600px) {
  header h1 {
    font-size: 1.5em;
  }

  .text-section {
    max-width: 100%;
    padding: var(--spacing-03);
    text-align: center;
  }

  .main-image {
    width: 100%;
    margin-top: 20px;
    max-width: none;
    display: block;
  }

  h2 {
    font-size: 1.2em;
  }

  p {
    font-size: 1em;
  }
}
