@charset "UTF-8";
/* Optimized CSS */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e6f3ff;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.row.logo {
  background-color: #fff;
}

.row.content,
.row.content.blue {
  flex-direction: row;
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.row.content.blue {
  background-color: #ff9933;
  color: #fff;
}

.col {
  flex: 1;
  box-sizing: border-box;
  text-align: center;
}

footer {
      height: 90px; /* 30pt ≈ 40px */
	  line-height: 40px; /* vertically center text */
	background-color: #DA9822;
    color: #fff;
    text-align: center;
}

img.responsive {
  max-width: 100%;
  height: auto;
}

/* Popup */
.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  max-width: 90%;
  background-color: #b5eef4;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 20px;
  text-align: center;
  display: none;
}

.popup img {
  width: 100%;
  border-radius: 10px;
}

.popup .cta {
  margin-top: 10px;
}

.popup .cta button,
.deal-button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #4c78bd;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.deal-button {
  padding: 12px 24px;
  text-decoration: none;
}

.popup .cta button:hover,
.deal-button:hover {
  background-color: #31b0d5;
}

/* Close Button */
.popup .close-btn {
  position: absolute;
  top: 5px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #fff;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

/* Header */
header {
  background-color: #5bc0de;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 10px;
  width: 100%;
}

.logo img {
  height: 100px;
}

.title {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}

.nav {
  text-align: right;
	  padding-right: 20px; /* Adjust this value as needed */
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
	  margin-left: 20px; /* space between items */
  transition: opacity 0.3s;
}

.nav a:hover {
  opacity: 0.8;
}

/* Wrapper */
.content-wrapper {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  overflow: auto;
  padding: 0;
}


.responsive-img {
  width: 40%;
  height: auto;
  max-width: 40%;
}

