/* Google Fonts - Outfit for modern sans-serif aesthetic */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Specified system sans-serif for top buttons */
  
  /* Color System */
  --color-white: #ffffff;
  --color-black: #111111;
  --color-dark-gray: #2c3035;
  --color-dark-gray-hover: #1e2124;
  --color-turquoise: #00c4cc;
  --color-turquoise-hover: #00aeb3;
  --color-light-gray-bg: #f5f6f8;
  --color-border-gray: #e1e4e8;
  --color-table-border: #444444;
  
  /* Structure */
  --max-width: 800px;
  --max-width-banner: 700px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-light-gray-bg);
  color: var(--color-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Site Outer Wrapper - Mimicking WordPress GeneratePress boxed container structure */
.site-wrapper {
  background-color: var(--color-white);
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

/* 1. Top Section */
.top-section {
  background-color: var(--color-white);
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border-gray);
  display: flex;
  justify-content: center;
  gap: 20px;
}

.top-btn {
  font-family: var(--font-system);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background-color: var(--color-turquoise);
  border: none;
  border-radius: 0px; /* Exact specification */
  width: 40%; /* Exact specification */
  height: 50px; /* Exact specification */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.top-btn:hover {
  background-color: var(--color-turquoise-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 196, 204, 0.25);
}

.top-btn:active {
  transform: translateY(0);
}

/* 2. Header */
.site-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border-gray);
  position: relative;
}

.logo-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo {
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
}

.site-title {
  font-weight: 700;
  font-size: 32px; /* Mobile font size */
  color: var(--color-black);
  line-height: 1.2;
}

.menu-toggle {
  background-color: #f0f0f0; /* Light gray square background */
  border: none;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.menu-toggle:hover {
  background-color: #e2e2e2;
  transform: scale(1.05);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  transition: var(--transition-smooth);
  transform-origin: left center;
}

/* Interactive Hamburger Menu Open State Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(2px, 0px);
}

.menu-toggle.active span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, 0px);
}

/* Responsive Mobile Navigation Drawer */
.mobile-nav {
  display: none;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-gray);
  padding: 16px 24px;
  list-style: none;
  transition: var(--transition-smooth);
}

.mobile-nav.open {
  display: block;
  animation: slideDown 0.3s ease-out forwards;
}

.mobile-nav li {
  margin-bottom: 12px;
}

.mobile-nav li:last-child {
  margin-bottom: 0;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 600;
  font-size: 16px;
  display: block;
  padding: 8px 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.mobile-nav a:hover {
  color: var(--color-turquoise);
  padding-left: 8px;
  border-bottom-color: var(--color-turquoise);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content Area */
.main-content {
  padding: 30px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* 3. Hero Banner */
.hero-banner-container {
  width: 100%;
  max-width: var(--max-width-banner); /* Exact specification 700px */
  display: flex;
  justify-content: center;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Slight border-radius */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.hero-banner-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* 4. CTA Section */
.cta-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-dark-gray);
  height: 58px;
  padding: 0 40px;
  border-radius: 999px; /* Pill shape */
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(44, 48, 53, 0.2);
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  background-color: var(--color-dark-gray-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 25px rgba(44, 48, 53, 0.35);
}

.cta-btn:active {
  transform: translateY(-1px) scale(1);
}

/* 5. Information Table */
.info-table-container {
  width: 100%;
  max-width: var(--max-width-banner);
  margin: 12px 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.info-table td {
  border: 1px solid var(--color-table-border); /* Exact specification #444 */
  padding: 18px; /* Exact specification 18px */
  vertical-align: middle;
  word-break: break-word;
  overflow-wrap: break-word;
}

.info-table tr td:first-child {
  font-weight: 500;
  color: #555555;
  background-color: #fafbfc;
  width: 35%;
}

.info-table tr td:last-child {
  font-weight: 700; /* Right column bold */
  color: var(--color-black);
}

/* 6. Content Section */
.content-section {
  width: 100%;
  max-width: var(--max-width-banner);
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.content-section p {
  font-size: 18px; /* Exact specification */
  line-height: 1.8; /* Exact specification */
  color: var(--color-black); /* Exact specification */
}

.content-section h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 12px;
  position: relative;
  padding-bottom: 8px;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: var(--color-turquoise);
}

.content-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 18px;
  color: var(--color-black);
}

/* 7. Footer */
.site-footer {
  background-color: var(--color-light-gray-bg); /* Exact specification */
  padding: 30px 24px;
  text-align: center; /* Exact specification */
  border-top: 1px solid var(--color-border-gray);
  font-size: 14px;
  color: #666666;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--color-dark-gray);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.site-footer a:hover {
  color: var(--color-turquoise);
}

/* Media Queries for Desktop layout adjustments */
@media (min-width: 768px) {
  .site-title {
    font-size: 42px; /* Desktop size: 42px */
  }
  
  .top-section {
    padding: 24px 40px;
  }
  
  .site-header {
    padding: 24px 40px;
    position: relative; /* Setup relative positioning for dropdown */
  }
  
  .main-content {
    padding: 40px;
    gap: 40px;
  }
  
  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 40px;
    width: 280px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-gray);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 99;
    padding: 20px;
  }
}

/* Outer layout framing for computers (wide screens) */
@media (min-width: 1024px) {
  body {
    padding: 40px 16px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  
  .site-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border-gray);
  }
}

/* Layout scaling for narrow mobile screens */
@media (max-width: 480px) {
  .site-title {
    font-size: 24px; /* Scaled down slightly to prevent header overflow on small mobile screens */
  }
  
  .info-table td {
    padding: 12px; /* Scales cell padding down dynamically to avoid word squeezing */
  }
  
  .top-section {
    padding: 16px;
    gap: 12px;
  }
  
  .site-header {
    padding: 16px;
  }
  
  .main-content {
    padding: 24px 16px;
    gap: 24px;
  }
}

