:root {
  /* Light Mode Colors */
  --primary: #4CAF50;
  --primary-dark: #3d8b40;
  --primary-light: #e8f5e9;
  --text-dark: #333333;
  --text-light: #f5f5f5;
  --bg-light: #f9f9f9;
  --bg-dark: #1a1a1a;
  --card-light: #ffffff;
  --card-dark: #2d2d2d;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* Dark Mode Colors - Default */
  --bg-color: var(--bg-dark);
  --text-color: var(--text-light);
  --card-bg: var(--card-dark);
  --border-color: #444;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --hover-bg: rgba(255, 255, 255, 0.05);
  --input-bg: #333;
  --input-border: #555;
  --modal-bg: #2d2d2d;
  --dropdown-bg: #2d2d2d;
}

.light-mode {
  --bg-color: var(--bg-light);
  --text-color: var(--text-dark);
  --card-bg: var(--card-light);
  --border-color: #e0e0e0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --hover-bg: rgba(0, 0, 0, 0.02);
  --input-bg: #ffffff;
  --input-border: #ddd;
  --modal-bg: #ffffff;
  --dropdown-bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  overflow-x: hidden;
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Dark mode is now default */
.dark-mode {
  background: linear-gradient(135deg, #1a3c1e 0%, var(--bg-dark) 100%);
  background-attachment: fixed;
}

.light-mode {
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
  background-attachment: fixed;
}

.container {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Top Bar Styles */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-container img {
  width: 50px;
  height: 50px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: "Arial Rounded MT Bold", "Arial Rounded", Arial, sans-serif;
}

.nav-links {
  display: flex;
  width: 50;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}

.nav-link {
  background: none;
  border: none;
  color: white;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  margin-left: 1rem;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
  display: flex;
}

.mobile-nav-link {
  padding: 1rem;
  color: white;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
}

/* Screens */
.screen {
  display: none;
  width: 100%;
  min-height: calc(100vh - 70px);
  position: relative;
  flex: 1 0 auto;
  width: 100%;
  padding-bottom: 150px;
}

.screen.active {
  display: flex;
  position: absolute;
  top: 1rem;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2rem;
  overflow-y: auto;
  min-height: calc(100vh - 70px);
}

.screen-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 180px;
}

/* Back button */
.back-button {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  margin-top: 2rem;
}

.back-button:hover {
  background-color: var(--primary);
  color: white;
}

.back-to-questions {
  display: flex;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 2rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  align-self: center;
}

.back-to-questions:hover {
  background-color: var(--primary);
  color: white;
  opacity: 1;
  transform: translateX(-5px);
}

.screen-header {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  color: var(--primary);
  text-align: center;
  width: 100%;
}

.palkeeper {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.1rem;
  color: var(--primary);
  text-align: center;
}

/* Building Content */
.building-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.section {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: var(--transition);
  width: 100%;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.section-text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Slides */
.slide {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: var(--transition);
  display: none;
  animation: fadeIn 0.5s ease;
  width: 100%;
}

.slide.active {
  display: block;
}

.slide-content {
  font-size: 1.3rem;
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
  width: 100%;
  color: var(--text-color);
}

.slide-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
}

.slide-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #666;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.light-mode .slide-nav-btn {
  background-color: #cccccc;
}

.slide-nav-btn.active {
  background-color: #4CAF50 !important;
  transform: scale(1.3);
  border-color: white;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
}

/* Image Container */
.img-container {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-color);
  position: relative;
  background-color: var(--card-bg);
  transition: var(--transition);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.img-container:hover img {
  transform: scale(1.05);
}

/* About Screen Columns */
.about-columns-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 3rem auto 2rem;
  width: 100%;
  max-width: 1200px;
}

.left-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  padding-top: 1rem;
}

.right-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.column-title {
  font-family: inherit;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
  padding: 0 1rem;
}

.dark-mode .column-title {
  color: #4CAF50;
}

.light-mode .column-title {
  color: #2e7d32;
}

.hero-image-container {
  width: 100%;
  max-width: 500px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-color);
  transition: var(--transition);
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

/* Founder's Story Link */
.founder-story-link {
  text-align: center;
  margin: 2rem auto 3rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.founder-story-text {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Summary Section */
.summary {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.light-mode .summary {
  background-color: var(--primary-light);
}

.summary p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  text-align: center;
}

/* Form Footer */
.form-footer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.form-footer .btn-prev,
.form-footer .btn-next {
  flex: 0 0 auto;
  min-width: 120px;
  white-space: nowrap;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-footer .btn-prev {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.form-footer .btn-prev:hover {
  background-color: rgba(76, 175, 80, 0.1);
}

.form-footer .btn-next:hover {
  background-color: var(--primary-dark);
}

/* Three Columns Section */
.three-columns-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 2rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.column-card {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.column-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.3);
}

.icon-container {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.icon-container i {
  font-size: 2.5rem;
  color: var(--primary);
  transition: var(--transition);
  z-index: 2;
  position: relative;
}

.column-card:hover .icon-container {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transform: scale(1.1) rotate(5deg);
}

.column-card:hover .icon-container i {
  color: white;
  transform: scale(1.1);
}

.column-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.column-card:hover h3 {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.column-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
  margin-top: 0.5rem;
  transition: var(--transition);
}

.column-card:hover p {
  opacity: 1;
}

/* Tech Startup Section */
.tech-startup-section {
  position: relative;
  width: 100%;
  margin: 4rem 0;
  overflow: hidden;
}

.startup-columns-container {
  display: flex;
  flex-wrap: wrap;
  min-height: 600px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

.startup-left-column {
  flex: 0 0 50%;
  width: 50%;
  padding: 4rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--card-bg);
  position: relative;
  z-index: 2;
}

.startup-right-column {
  flex: 0 0 50%;
  width: 50%;
  position: relative;
  background-image: url('/assets/images/palKeeperHero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

.startup-right-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.startup-icon {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.startup-icon i {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.startup-intro-text {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: 500px;
}

.startup-column-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.2;
  max-width: 500px;
}

.dark-mode .startup-column-title {
  color: #4CAF50;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.light-mode .startup-column-title {
  color: #2e7d32;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.startup-description {
  font-size: clamp(1rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 500px;
  opacity: 0.85;
}

.startup-cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  width: auto;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.startup-cta-button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.overlay-cta-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  width: min(400px, 85%);
  max-width: 400px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-left: 5px solid var(--primary);
  text-align: left;
  animation: cardFadeIn 0.6s ease-out;
}

.dark-mode .overlay-cta-card {
  background-color: rgba(45, 45, 45, 0.95);
  border-left: 5px solid #4CAF50;
}

.light-mode .overlay-cta-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-left: 5px solid #2e7d32;
}

.cta-card-title {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 900;
  color: var(--text-color);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  text-align: left;
}

.dark-mode .cta-card-title {
  color: #ffffff;
}

.light-mode .cta-card-title {
  color: #000000;
}

.cta-card-subtext {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--text-color);
  opacity: 0.8;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 1.5rem;
}

.cta-card-button {
  display: inline-block;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-card-button:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Our Team Section */
.our-team-section {
  width: 100vw;
  position: relative;
  min-height: 700px;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  overflow: visible;
  left: 0;
  right: 0;
}

.our-team-section-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 35%;
  background-color: var(--card-bg);
  z-index: 1;
  margin: 0;
  padding: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}

.team-header {
  width: 100%;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0 0 3rem 0;
  text-align: left;
}

.team-header .column-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  max-width: 350px;
  margin-left: 3rem;
}

.team-columns-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  margin-bottom: 6%;
}

.team-columns-wrapper {
  display: none; /* Hidden by default */
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  justify-items: center;
}

.team-columns-wrapper.show-team {
  display: grid;
}

.team-column {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--card-bg);
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
  height: 450px;
  opacity: 0; /* Hidden initially for animation */
}

.team-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.team-portrait {
  position: relative;
  height: 315px;
  overflow: hidden;
  flex-shrink: 0;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}

.team-column:hover .team-portrait img {
  transform: scale(1.05);
}

.title-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(76, 175, 80, 0.95);
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 0 4px 0 0;
  text-transform: uppercase;
  z-index: 3;
  min-width: 60px;
  text-align: center;
}

.team-info {
  height: 135px;
  padding: 1.5rem;
  background-color: var(--card-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-top: 3px solid var(--primary);
  flex-shrink: 0;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
  width: 100%;
  text-align: left;
}

.team-role {
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 1rem;
  width: 100%;
  text-align: left;
  font-weight: 500;
}

.team-about-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: var(--transition);
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-family: inherit;
  margin-top: 0.5rem;
  text-align: left;
  position: relative;
}

.team-about-button:hover {
  color: var(--primary-dark);
  background-color: rgba(76, 175, 80, 0.1);
  transform: translateY(-2px);
}

.team-about-button i {
  margin-left: 0.3rem;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.team-about-button:hover i {
  transform: translateX(4px);
}

/* Team Toggle Button */
.team-toggle-btn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 3rem;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.team-toggle-btn:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Unique Animation for Team Cards */
@keyframes uniqueCardEntrance {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(-15deg) translateY(50px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateX(0) translateY(0) scale(1);
  }
}

.team-columns-wrapper.show-team .team-column {
  animation: uniqueCardEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered Animation Delays */
.team-columns-wrapper.show-team .team-column:nth-child(1) { animation-delay: 0.1s; }
.team-columns-wrapper.show-team .team-column:nth-child(2) { animation-delay: 0.2s; }
.team-columns-wrapper.show-team .team-column:nth-child(3) { animation-delay: 0.3s; }
.team-columns-wrapper.show-team .team-column:nth-child(4) { animation-delay: 0.4s; }
.team-columns-wrapper.show-team .team-column:nth-child(5) { animation-delay: 0.5s; }
.team-columns-wrapper.show-team .team-column:nth-child(6) { animation-delay: 0.6s; }
.team-columns-wrapper.show-team .team-column:nth-child(7) { animation-delay: 0.7s; }
.team-columns-wrapper.show-team .team-column:nth-child(8) { animation-delay: 0.8s; }
.team-columns-wrapper.show-team .team-column:nth-child(9) { animation-delay: 0.9s; }

/* Contact Form */
.contact-form {
  max-width: 650px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--input-bg) !important;
  color: var(--text-color) !important;
  transition: var(--transition);
  border-color: var(--input-border);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--primary) !important;
  background-color: rgba(76, 175, 80, 0.1) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2) !important;
  background-color: rgba(76, 175, 80, 0.15) !important;
}

.form-group textarea {
  resize: vertical;
}

/* Custom Dropdown */
.custom-select {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  z-index: 1;
}

.select-selected {
  background-color: var(--input-bg);
  color: var(--text-color);
  padding: 0.8rem 1rem;
  border: 2px solid var(--input-border);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  position: relative;
  z-index: 10;
}

.select-selected:hover {
  border-color: var(--primary);
  background-color: rgba(76, 175, 80, 0.1);
}

.select-selected i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.select-selected.open i {
  transform: rotate(180deg);
}

.select-items {
  position: absolute;
  background-color: var(--input-bg);
  border: 2px solid var(--input-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  width: 100%;
  z-index: 1001 !important;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 10px 30px var(--shadow-color);
  margin-top: -2px;
}

.select-selected.open+.select-items {
  display: block;
}

.select-items div {
  color: var(--text-color);
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.select-items div:last-child {
  border-bottom: none;
}

.select-items div:hover {
  background-color: var(--primary) !important;
  color: white !important;
}

.select-items div.selected,
.select-items div.selected:hover {
  background-color: var(--primary) !important;
  color: white !important;
  font-weight: 600;
}

/* Name Inputs Row */
.name-inputs-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1rem !important;
  width: 100% !important;
  margin-top: 5px !important;
}

.name-inputs-row input {
  flex: 1 !important;
  min-width: 0 !important;
}

/* Address Inputs */
.address-inputs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.address-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  width: 100%;
}

/* Checkbox */
.checkbox-group {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.8rem !important;
  margin-bottom: 1rem !important;
  flex-wrap: nowrap !important;
}

.checkbox-group input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checkbox-group input[type="checkbox"]:hover {
  background-color: rgba(76, 175, 80, 0.1);
  border-color: var(--primary-dark);
}

.checkbox-group input[type="checkbox"]:checked {
  background-color: var(--primary) !important;
  border-color: var(--primary-dark) !important;
}

.checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
}

.checkbox-group label {
  flex: 1 !important;
  white-space: normal !important;
  word-break: break-word !important;
  line-height: 1.4 !important;
  margin-top: 0.1rem !important;
  min-width: 0 !important;
  color: var(--text-color);
}

.checkbox-group:hover label {
  color: var(--primary);
}

/* Submit Button */
.form-submit-btn {
  background-color: var(--primary) !important;
  color: white !important;
  border: none !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  width: 100% !important;
  margin-top: 2rem !important;
}

.form-submit-btn:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.5) !important;
}

.form-submit-btn:disabled {
  background-color: #666 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--modal-bg);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: var(--text-color);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--hover-bg);
  color: var(--text-color);
}

.modal-body {
  padding: 1.5rem;
}

.modal-body p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footnote */
.footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 10;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-top: auto;
  width: 100%;
  height: 60px;
  visibility: hidden;
  order: 9999;
}

.footnote.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.footnote p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.foot-note-right {
  display: flex;
  align-items: center;
  justify-self: end;
}

/* Contact Link */
.contact-link {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
  padding: 0 4px;
  border-radius: 4px;
  position: relative;
}

.contact-link:hover {
  color: var(--primary-dark);
  background-color: rgba(76, 175, 80, 0.15);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(76, 175, 80, 0.2);
}

/* ================================ */
/* ROLES & FOCUS AREAS SPECIFIC STYLES */
/* ================================ */

.roles-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 40px 20px;
  background-color: var(--bg-color);
}

.main-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.dark-mode .main-title {
  color: #4CAF50;
}

.light-mode .main-title {
  color: #2e7d32;
}

.subtitle {
  text-align: center;
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.8;
}

#roles-focus-areas .section-title {
  font-size: 1.8rem;
  margin: 50px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
}

#roles-focus-areas .three-columns-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

#roles-focus-areas .column-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

#roles-focus-areas .column-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px var(--shadow-color);
  border-color: var(--primary);
}

#roles-focus-areas .icon-container {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-mode #roles-focus-areas .icon-container {
  background: rgba(76, 175, 80, 0.15);
}

.light-mode #roles-focus-areas .icon-container {
  background: rgba(76, 175, 80, 0.08);
}

#roles-focus-areas .column-card h3 {
  margin: 15px 0;
  color: var(--primary);
  font-size: 1.3rem;
}

#roles-focus-areas .column-card p {
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.9;
}

#roles-focus-areas .column-card .title {
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
  opacity: 0.9;
}

#roles-focus-areas .column-card ul {
  list-style: none;
  padding-left: 0;
}

#roles-focus-areas .column-card li {
  padding: 5px 0;
  color: var(--text-color);
  position: relative;
  padding-left: 20px;
  opacity: 0.9;
}

#roles-focus-areas .column-card li:before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.full-width-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 4px 6px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.full-width-card h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.full-width-card ul {
  list-style: none;
  padding-left: 0;
}

.full-width-card li {
  padding: 8px 0;
  color: var(--text-color);
  position: relative;
  padding-left: 25px;
  opacity: 0.9;
}

.full-width-card li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.palkeeper-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 3px solid var(--primary);
}

.stage-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 4px 6px var(--shadow-color);
  border-left: 5px solid var(--primary);
}

.current-stage {
  border-left-color: #28a745;
}

.medium-stage {
  border-left-color: #007bff;
}

.future-stage {
  border-left-color: #6f42c1;
}

.role-highlight {
  background: var(--hover-bg);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid var(--border-color);
}

.role-highlight h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.role-item {
  background: var(--hover-bg);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.role-item h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.role-item p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

.priority-card {
  background: rgba(76, 175, 80, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.dark-mode .priority-card {
  background: rgba(76, 175, 80, 0.15);
}

.light-mode .priority-card {
  background: rgba(76, 175, 80, 0.08);
}

.priority-card h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.priority-card ol {
  padding-left: 20px;
  color: var(--text-color);
}

.priority-card li {
  padding: 5px 0;
  opacity: 0.9;
}

.principles-card {
  background: rgba(111, 66, 193, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid rgba(111, 66, 193, 0.3);
}

.dark-mode .principles-card {
  background: rgba(111, 66, 193, 0.15);
}

.light-mode .principles-card {
  background: rgba(111, 66, 193, 0.08);
}

.principles-card h2 {
  color: #6f42c1;
  margin-bottom: 15px;
}

.principles-card ul {
  list-style: none;
  padding-left: 0;
}

.principles-card li {
  padding: 8px 0;
  color: var(--text-color);
  position: relative;
  padding-left: 25px;
  opacity: 0.9;
}

.principles-card li:before {
  content: "→";
  color: #6f42c1;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.final-note {
  background: rgba(255, 193, 7, 0.1);
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 5px solid #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.dark-mode .final-note {
  background: rgba(255, 193, 7, 0.15);
}

.light-mode .final-note {
  background: rgba(255, 193, 7, 0.08);
}

.final-note h2 {
  color: #ffc107;
  margin-bottom: 15px;
}

.final-note p {
  color: var(--text-color);
  line-height: 1.6;
  opacity: 0.9;
}

.column-card .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.column-card ul {
  font-size: 1rem;
  text-align: left;
  margin-top: 1rem;
  padding-left: 1rem;
}

.column-card li {
  font-size: 0.9rem;
  text-align: left;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

#roles-focus-areas .three-columns-container {
  margin-top: 2rem;
}

#roles-focus-areas .section-title {
  margin-left: 0;
}

/* Responsive styles for Roles & Focus Areas */
@media (max-width: 768px) {
  .roles-container {
    padding: 20px 15px;
  }

  .main-title {
    font-size: 2rem;
  }

  #roles-focus-areas .three-columns-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }

  .full-width-card {
    padding: 20px;
  }

  .stage-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .main-title {
    font-size: 1.8rem;
  }

  #roles-focus-areas .section-title {
    font-size: 1.5rem;
  }

  .roles-container {
    padding: 15px 10px;
  }

  #roles-focus-areas .column-card {
    padding: 20px;
  }

  .priority-card,
  .principles-card,
  .final-note {
    padding: 20px;
  }
}

/* ================================ */
/* EXISTING RESPONSIVE STYLES */
/* ================================ */

@media (max-width: 768px) {
  .container {
    min-height: calc(100vh - 120px);
    padding-bottom: 120px;
  }

  .screen {
    min-height: calc(100vh - 120px);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .top-bar {
    padding: 1rem;
  }

  .screen-wrapper {
    padding: 1rem;
    padding-bottom: 180px;
  }

  .back-button {
    margin: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .summary {
    padding: 1.5rem;
  }

  .summary p {
    font-size: 1.1rem;
  }

  .foot-note-right {
    display: none;
  }

  .img-container {
    height: 300px;
    margin: 1.5rem 0.5rem;
    border-radius: 8px;
  }

  /* About columns mobile */
  .about-columns-container {
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.5rem;
    min-height: auto;
  }

  .left-column {
    order: 1;
    min-height: auto;
    justify-content: flex-start;
  }

  .right-column {
    order: 2;
  }

  .hero-image {
    min-height: 300px;
    max-height: 400px;
  }

  .hero-image-container {
    height: 250px;
    border-radius: 8px;
  }

  /* Tech startup mobile */
  .tech-startup-section {
    margin: 3rem 0;
  }

  .startup-left-column,
  .startup-right-column {
    flex: 0 0 100%;
    width: 100%;
  }

  .startup-left-column {
    padding: 3rem 10vw;
    order: 2;
  }

  .startup-right-column {
    min-height: 400px;
    order: 1;
    background-attachment: scroll;
  }

  /* Our team mobile */
  .our-team-section-footer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
  }

  .team-columns-container {
    margin-bottom: 0 !important;
    padding: 2rem 1rem;
    align-items: center;
  }

  .team-header {
    padding-bottom: 1.5rem;
    text-align: center;
    width: 100%;
  }

  .team-header .column-title {
    text-align: center;
  }

  .team-columns-wrapper {
    /* Grid handles layout, just adjust columns */
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .team-toggle-btn {
    margin-left: 0;
    margin: 1rem auto;
    display: flex;
  }

  .our-team-section {
    min-height: auto !important;
    padding-bottom: 3rem !important;
  }

  .team-column {
    width: 100%;
    max-width: 350px;
    height: 380px;
  }

  .team-portrait {
    height: 266px;
  }

  .team-info {
    height: 114px;
    padding: 1.2rem;
  }

  /* Name inputs mobile */
  .name-inputs-row {
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
  }

  .name-inputs-row input {
    flex: 1 1 calc(50% - 0.4rem) !important;
    min-width: 0 !important;
    font-size: 0.95rem !important;
    padding: 0.7rem 0.8rem !important;
  }

  .name-inputs-row input#contactMiddleName {
    flex: 1 1 100% !important;
    order: 3;
  }

  /* Address row mobile */
  .address-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  #city,
  #state,
  #zipCode {
    flex: 1 1 calc(33.333% - 0.5rem) !important;
    min-width: 0;
  }

  #zipCode {
    max-width: none;
  }

  /* Three columns mobile */
  .three-columns-container {
    gap: 1.5rem;
    margin: 2.5rem auto 1.5rem;
  }

  .column-card {
    padding: 1.8rem;
    min-width: 220px;
  }

  .icon-container {
    width: 65px;
    height: 65px;
    margin-bottom: 1.2rem;
  }

  .icon-container i {
    font-size: 2rem;
  }

  .column-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .column-card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .screen-header {
    font-size: 1rem;
    margin-top: 2rem;
  }

  .slide-content {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .company-name {
    font-size: 1.2rem;
  }

  .back-button {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .img-container {
    height: 250px;
    margin: 1rem 0;
    border-radius: 6px;
  }

  /* About columns small mobile */
  .about-columns-container {
    margin: 1rem auto;
    gap: 1rem;
  }

  .slides-container {
    min-height: 200px;
    padding: 0.5rem;
  }

  #about-screen .slide {
    padding: 1.2rem;
    min-height: 120px;
    border-radius: 12px;
  }

  .column-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  #about-screen .slide-content {
    font-size: 1rem;
    line-height: 1.5;
  }

  .slide-nav {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .slide-nav-btn {
    width: 10px;
    height: 10px;
  }

  .hero-image-container {
    height: 220px;
  }

  /* Tech startup small mobile */
  .tech-startup-section {
    margin: 2rem 0;
  }

  .startup-left-column {
    padding: 2rem 6vw;
  }

  .startup-right-column {
    min-height: 300px;
  }

  .startup-cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
  }

  .cta-card-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Our team small mobile */
  .team-columns-container {
    padding: 1.5rem 0.5rem;
  }

  .team-header .column-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .team-columns-wrapper {
    gap: 1.5rem;
  }

  .team-column {
    max-width: 320px;
    height: 360px;
  }

  .team-portrait {
    height: 252px;
  }

  .team-info {
    height: 108px;
    padding: 1rem;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-role {
    font-size: 0.85rem;
  }

  .team-about-button {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  /* Three columns small mobile */
  .three-columns-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto 1rem;
    padding: 0 0.5rem;
  }

  .column-card {
    width: 100%;
    max-width: 320px;
    min-width: unset;
    padding: 1.5rem;
  }

  .icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .icon-container i {
    font-size: 1.8rem;
  }

  .column-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
  }

  .column-card p {
    font-size: 0.9rem;
  }

  /* Name inputs small mobile */
  .name-inputs-row {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }

  .name-inputs-row input {
    flex: 1 1 100% !important;
    width: 100% !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 0.7rem !important;
  }

  .name-inputs-row input::placeholder {
    font-size: 0.85rem !important;
  }

  /* Address row small mobile */
  .address-row {
    flex-direction: column;
  }

  #city,
  #state,
  #zipCode {
    flex: 1 1 100% !important;
    width: 100%;
  }

  /* Form submit button small mobile */
  #contactUs .form-submit-btn {
    max-width: 200px !important;
    padding: 0.8rem 1.2rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .footnote h3 {
    font-size: 1rem;
  }

  .footnote p {
    font-size: 0.85rem;
  }

  .icon-container {
    width: 40px;
    height: 40px;
  }

  .icon-container i {
    font-size: 1.2rem;
  }

  /* Tech startup extra small */
  .startup-left-column {
    padding: 1.5rem 5vw;
  }

  .startup-right-column {
    min-height: 250px;
  }

  .cta-card-title {
    font-size: 1.2rem;
  }

  .cta-card-subtext {
    font-size: 0.85rem;
  }

  /* Our team extra small */
  .team-columns-container {
    padding: 1rem 0.25rem;
  }

  .team-header .column-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .team-columns-wrapper {
    gap: 1rem;
  }

  .team-column {
    max-width: 280px;
    height: 340px;
  }

  .team-portrait {
    height: 238px;
  }

  .team-info {
    height: 102px;
    padding: 0.8rem;
  }

  .team-name {
    font-size: 1rem;
  }

  .team-role {
    font-size: 0.8rem;
  }

  .title-caption {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }

  /* Founder story extra small */
  .founder-story-text {
    font-size: 0.9rem;
  }

  .hero-image-container {
    height: 200px;
  }
}

@media (max-width: 992px) {
  .team-columns-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================== */
/* FOUNDER'S STORY LINK */
/* ======================== */

.founder-story-link {
  text-align: center;
  margin: 2rem auto 3rem;
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.founder-story-text {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.founder-story-highlight {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  background: transparent;
  border: none;
  font-size: inherit;
  font-family: inherit;
}

/* Hover effects for founder's story link */
.founder-story-highlight:hover {
  color: var(--primary-dark);
  background-color: rgba(76, 175, 80, 0.1);
  transform: translateY(-2px);
}

/* Underline animation on hover */
.founder-story-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.founder-story-highlight:hover::after {
  width: 100%;
}

/* Focus state for accessibility */
.founder-story-highlight:focus {
  outline: 3px solid rgba(76, 175, 80, 0.3);
  outline-offset: 2px;
}

/* Arrow icon animation */
.founder-story-highlight i {
  margin-left: 0.5rem;
  font-size: 0.9em;
  transition: transform 0.3s ease;
  display: inline-block;
}

.founder-story-highlight:hover i {
  transform: translateX(4px);
}

/* Decorative line above the text */
.founder-story-link::before {
  content: '';
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}

/* ======================== */
/* DARK/LIGHT MODE SPECIFIC */
/* ======================== */

.dark-mode .founder-story-text {
  opacity: 0.8;
}

.light-mode .founder-story-text {
  opacity: 0.9;
}

.dark-mode .founder-story-highlight {
  color: #4CAF50;
}

.light-mode .founder-story-highlight {
  color: #2e7d32;
}

.dark-mode .founder-story-highlight:hover {
  background-color: rgba(76, 175, 80, 0.15);
}

.light-mode .founder-story-highlight:hover {
  background-color: rgba(76, 175, 80, 0.08);
}

/* ======================== */
/* REDUCED MOTION SUPPORT */
/* ======================== */

@media (prefers-reduced-motion: reduce) {

  .founder-story-highlight,
  .founder-story-highlight i,
  .founder-story-highlight::after {
    transition: none;
  }

  .founder-story-highlight:hover {
    transform: none;
  }

  .founder-story-highlight:hover i {
    transform: none;
  }
}

.column-card .title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
}

.column-card ul {
  font-size: 1rem;
  text-align: left;
  margin-top: 1rem;
  padding-left: 1rem;
}

.column-card li {
  font-size: 0.9rem;
  text-align: left;
  margin-top: 1rem;
  padding-left: 1rem;
  color: var(--text-color);
}

#roles-focus-areas .three-columns-container {
  margin-top: 2rem;
}

#roles-focus-areas .section-title {
  margin-left: 0;
}

/* If placed inside a container with max-width, override it */
#about-screen .tech-startup-section,
.screen-wrapper .tech-startup-section {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  left: 0 !important;
  right: 0 !important;
  position: relative !important;
}

/* Link Columns Styles */
.link-columns-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.link-column {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 1rem;
}

.logo-social-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  padding: 5px;
}

.footer-company-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: "Arial Rounded MT Bold", "Arial Rounded", Arial, sans-serif;
}

.social-icons-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.social-icon i {
  font-size: 1rem;
}

.app-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 200px;
  margin-top: 0.5rem;
}

.app-button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  font-weight: 500;
}

.app-button:hover {
  background-color: rgba(76, 175, 80, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.app-button i {
  font-size: 1.2rem;
  color: var(--primary);
}

.app-button.google-play i {
  color: #34A853;
}

.app-button.app-store i {
  color: #007AFF;
}

.link-column-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li {
  margin-bottom: 0.8rem;
}

.link-item {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.3rem 0;
  display: inline-block;
  opacity: 0.9;
  position: relative;
}

.link-item:hover {
  color: var(--primary);
  opacity: 1;
  transform: translateX(5px);
}

.link-item::before {
  content: "→";
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: var(--transition);
  color: var(--primary);
}

.link-item:hover::before {
  opacity: 1;
  left: -15px;
}

/* Responsive styles for Link Columns */
@media (max-width: 992px) {
  .link-columns-container {
    gap: 1.5rem;
  }

  .link-column {
    min-width: 180px;
    flex: 0 0 calc(50% - 1rem);
  }

  .logo-social-column {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .link-columns-container {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .link-column {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .social-icons-row {
    justify-content: center;
  }

  .app-buttons-container {
    align-items: center;
  }

  .link-item:hover::before {
    display: none;
  }

  .link-item:hover {
    transform: translateX(0);
  }
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 70px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

.back-to-top:active {
  transform: translateY(-1px) scale(1.05);
}

/* Dark/Light mode specific styles */
.dark-mode .back-to-top {
  background-color: #4CAF50;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.5);
}

.dark-mode .back-to-top:hover {
  background-color: #3d8b40;
}

.light-mode .back-to-top {
  background-color: #2e7d32;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.light-mode .back-to-top:hover {
  background-color: #1b5e20;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .back-to-top:hover {
    transform: translateY(-2px) scale(1.05);
  }
}

/* FAQ Screen Styles */
.faqs-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faqs-intro .section-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Platform Selection Buttons */
.platform-buttons-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.platform-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background-color: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition);
  min-width: 180px;
  gap: 0.8rem;
}

.platform-btn:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.platform-btn.active {
  background-color: rgba(76, 175, 80, 0.15);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.platform-btn i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.platform-btn span {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Android button specific */
.platform-btn[data-platform="android"] i {
  color: #3DDC84;
}

.platform-btn[data-platform="android"].active {
  background-color: rgba(61, 220, 132, 0.15);
  border-color: #3DDC84;
}

/* iOS button specific */
.platform-btn[data-platform="ios"] i {
  color: #A2AAAD;
}

.platform-btn[data-platform="ios"].active {
  background-color: rgba(162, 170, 173, 0.15);
  border-color: #A2AAAD;
}

/* Desktop button specific */
.platform-btn[data-platform="desktop"] i {
  color: #0078D7;
}

.platform-btn[data-platform="desktop"].active {
  background-color: rgba(0, 120, 215, 0.15);
  border-color: #0078D7;
}

/* FAQ Sections Container */
.faq-sections-container {
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.faq-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.faq-section.active {
  display: block;
}

.faq-section-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(76, 175, 80, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-section-title i {
  font-size: 2rem;
}

/* FAQ Categories */
.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background-color: var(--card-bg);
  border: none;
  color: var(--text-color);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(76, 175, 80, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: var(--card-bg);
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  margin-bottom: 1rem;
  color: var(--text-color);
  opacity: 0.9;
}

.faq-answer ul,
.faq-answer ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
  opacity: 0.9;
}

.faq-answer strong {
  color: var(--primary);
}

/* Still Need Help Section */
.help-section {
  text-align: center;
  padding: 2.5rem;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 800px;
}

.help-section h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.help-section p {
  color: var(--text-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.contact-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.contact-support-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .platform-buttons-container {
    flex-direction: column;
    align-items: center;
  }

  .platform-btn {
    width: 100%;
    max-width: 300px;
    padding: 1.2rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-answer.active {
    padding: 1rem;
  }

  .faq-section-title {
    font-size: 1.5rem;
  }

  .help-section {
    padding: 1.5rem;
  }

  .contact-support-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Legals & Policies Screen Styles */
.legals-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.legals-intro .section-text {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Policies Accordion Container */
.policies-accordion-container {
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.policy-section {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.policy-section:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.policy-title {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border: none;
  color: var(--text-color);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  transition: var(--transition);
}

.policy-title:hover {
  background-color: rgba(76, 175, 80, 0.05);
}

.policy-title.active {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary);
}

.policy-title i {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.policy-title.active i {
  transform: rotate(180deg);
}

.policy-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--card-bg);
}

.policy-content.active {
  padding: 0;
  max-height: 5000px;
}

.policy-content-inner {
  padding: 2rem;
  border-top: 1px solid var(--border-color);
}

.policy-content-inner h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.policy-content-inner h4 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.policy-content-inner p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
}

.policy-content-inner ul,
.policy-content-inner ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.policy-content-inner li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
}

.policy-content-inner strong {
  color: var(--primary);
}

.policy-content-inner address {
  font-style: normal;
  background-color: rgba(76, 175, 80, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--primary);
}

/* Rewards Table */
.rewards-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

.rewards-table th,
.rewards-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.rewards-table th {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--primary);
  font-weight: 600;
}

.rewards-table tr:hover {
  background-color: rgba(76, 175, 80, 0.05);
}

/* Legal Assistance Section */
.legal-assistance-section {
  text-align: center;
  padding: 2.5rem;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 800px;
}

.legal-assistance-section h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.legal-assistance-section p {
  color: var(--text-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.contact-legal-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.contact-legal-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .policy-title {
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  .policy-content-inner {
    padding: 1.5rem;
  }

  .policy-content-inner h3 {
    font-size: 1.5rem;
  }

  .policy-content-inner h4 {
    font-size: 1.2rem;
  }

  .rewards-table {
    font-size: 0.9rem;
  }

  .rewards-table th,
  .rewards-table td {
    padding: 0.8rem;
  }

  .legal-assistance-section {
    padding: 1.5rem;
  }

  .contact-legal-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Add to your existing CSS */
.notice-box {
  background-color: rgba(76, 175, 80, 0.1);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 0 8px 8px 0;
}

.notice-box p {
  margin: 0;
  font-style: italic;
  opacity: 0.9;
}

/* Community Standards specific styles */
.intro-notice {
  background-color: rgba(76, 175, 80, 0.08);
  border-left: 4px solid #4CAF50;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.trial-notice {
  background-color: rgba(255, 152, 0, 0.08);
  border-left: 4px solid #FF9800;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.important-box {
  background-color: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
}

.important-box h5 {
  color: #2196F3;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.important-box ul {
  margin-bottom: 0;
}

.important-box a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.important-box a:hover {
  text-decoration: underline;
}

/* Add emphasis for critical safety information */
.policy-content-inner li strong {
  color: #F44336;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .intro-notice,
  .trial-notice {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .important-box {
    padding: 1.2rem;
  }
}

/* Terms of Service specific styles */
.warning-box {
  background-color: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #F44336;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.warning-box p {
  margin: 0;
  color: #F44336;
  font-weight: 500;
}

.infrastructure-notice {
  background-color: rgba(33, 150, 243, 0.08);
  border-left: 4px solid #2196F3;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.important-notice {
  background-color: rgba(255, 152, 0, 0.15);
  border: 2px solid #FF9800;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  text-align: center;
}

.disclaimer-box {
  background-color: rgba(158, 158, 158, 0.1);
  border-left: 4px solid #9E9E9E;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.liability-box {
  background-color: rgba(244, 67, 54, 0.08);
  border: 1px solid rgba(244, 67, 54, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.final-note {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  text-align: center;
}

.final-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.final-note a:hover {
  text-decoration: underline;
}

/* Better spacing for nested lists */
.policy-content-inner ul ul {
  margin-left: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Enhanced typography for long content */
.policy-content-inner p+ul,
.policy-content-inner p+ol {
  margin-top: -0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .warning-box,
  .infrastructure-notice,
  .disclaimer-box {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .important-notice,
  .liability-box {
    padding: 1.2rem;
  }

  .policy-content-inner ul ul {
    margin-left: 1.5rem;
  }
}

/* Referral Program specific styles */
.program-intro {
  background-color: rgba(76, 175, 80, 0.08);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
}

.program-intro h4 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
}

.program-agreement {
  background-color: rgba(33, 150, 243, 0.08);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  border-left: 4px solid #2196F3;
}

.important-tip {
  background-color: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 8px;
}

.important-tip p {
  margin: 0;
  font-weight: 500;
  color: var(--text-color);
}

.rewards-table-container {
  margin: 1.5rem 0;
  overflow-x: auto;
}

.rewards-table-container h5 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.rewards-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.rewards-table thead {
  background-color: rgba(76, 175, 80, 0.1);
}

.rewards-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid var(--border-color);
}

.rewards-table td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.rewards-table tr:hover {
  background-color: rgba(76, 175, 80, 0.05);
}

.governing-law-box {
  background-color: rgba(156, 39, 176, 0.08);
  border-left: 4px solid #9C27B0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.governing-law-box p {
  margin: 0.5rem 0;
}

.program-summary {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.program-summary h5 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.program-summary ul {
  margin-bottom: 0;
}

.program-summary li {
  margin-bottom: 0.5rem;
}

.final-reminder {
  background-color: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.2);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  text-align: center;
}

.final-reminder a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.final-reminder a:hover {
  text-decoration: underline;
}

/* Make lists in referral program more compact */
#referrals-section .policy-content-inner ol,
#referrals-section .policy-content-inner ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

#referrals-section .policy-content-inner li {
  margin-bottom: 0.5rem;
}

/* Responsive adjustments for referral program */
@media (max-width: 768px) {

  .program-intro,
  .program-agreement,
  .governing-law-box {
    padding: 1.2rem;
  }

  .rewards-table th,
  .rewards-table td {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .program-summary,
  .final-reminder {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .rewards-table {
    font-size: 0.85rem;
  }

  .rewards-table th,
  .rewards-table td {
    padding: 0.5rem;
  }
}

/* Disclaimer specific styles */
.disclaimer-note {
  background-color: rgba(158, 158, 158, 0.08);
  border-left: 4px solid #9E9E9E;
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.sponsorship-note {
  background-color: rgba(255, 152, 0, 0.08);
  border: 1px solid rgba(255, 152, 0, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.sponsorship-note p {
  margin: 0.5rem 0;
}

.legal-warning {
  background-color: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #F44336;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.legal-warning p {
  margin: 0;
  color: #F44336;
  font-weight: 500;
}

.testimonial-note {
  background-color: rgba(156, 39, 176, 0.08);
  border: 1px solid rgba(156, 39, 176, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.testimonial-note p {
  margin: 0.5rem 0;
}

.warranty-disclaimer {
  background-color: rgba(33, 150, 243, 0.08);
  border-left: 4px solid #2196F3;
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.final-warning {
  background-color: rgba(244, 67, 54, 0.15);
  border: 2px solid #F44336;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  text-align: center;
}

.final-warning p {
  margin: 0;
  color: #F44336;
  font-weight: 600;
}

.related-policies {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.related-policies h5 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.related-policies ul {
  margin-bottom: 0;
}

.related-policies li {
  margin-bottom: 0.5rem;
}

.related-policies a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.related-policies a:hover {
  text-decoration: underline;
}

.summary-box {
  background-color: rgba(96, 125, 139, 0.1);
  border: 1px solid rgba(96, 125, 139, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.summary-box h5 {
  color: #607D8B;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.summary-box ul {
  margin-bottom: 0;
}

.summary-box li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.summary-box li:before {
  content: "•";
  color: #607D8B;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Responsive adjustments for disclaimer */
@media (max-width: 768px) {

  .disclaimer-note,
  .legal-warning,
  .warranty-disclaimer {
    padding: 1rem;
  }

  .sponsorship-note,
  .testimonial-note,
  .final-warning,
  .related-policies,
  .summary-box {
    padding: 1.2rem;
  }

  .summary-box li {
    padding-left: 1.2rem;
  }
}

/* Privacy Policy specific styles */
.privacy-note {
  background-color: rgba(33, 150, 243, 0.08);
  border-left: 4px solid #2196F3;
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.choice-note {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  padding: 1.2rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.legal-note {
  background-color: rgba(156, 39, 176, 0.08);
  border-left: 4px solid #9C27B0;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.retention-note {
  background-color: rgba(96, 125, 139, 0.08);
  border-left: 4px solid #607D8B;
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.disclosure-note {
  background-color: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.disclosure-note p {
  margin: 0.5rem 0;
}

.retention-policy {
  background-color: rgba(244, 67, 54, 0.08);
  border-left: 4px solid #F44336;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.retention-policy p {
  margin: 0.5rem 0;
}

.transfer-note {
  background-color: rgba(255, 152, 0, 0.08);
  border-left: 4px solid #FF9800;
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.rights-list {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.rights-list ol {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.rights-list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.rights-list li:last-child {
  margin-bottom: 0;
}

.objection-note {
  background-color: rgba(33, 150, 243, 0.1);
  border: 1px solid rgba(33, 150, 243, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.verification-note {
  background-color: rgba(158, 158, 158, 0.1);
  border: 1px solid rgba(158, 158, 158, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.verification-note p {
  margin: 0.5rem 0;
}

.privacy-summary {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.privacy-summary h5 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.privacy-summary ul {
  margin-bottom: 0;
}

.privacy-summary li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.privacy-summary li:before {
  content: "✓";
  color: #4CAF50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.related-documents {
  background-color: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.related-documents h5 {
  color: #2196F3;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.related-documents ul {
  margin-bottom: 0;
}

.related-documents li {
  margin-bottom: 0.5rem;
}

.related-documents a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.related-documents a:hover {
  text-decoration: underline;
}

/* Enhanced typography for privacy policy */
#privacy-policy-section .policy-content-inner li {
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

/* Responsive adjustments for privacy policy */
@media (max-width: 768px) {

  .privacy-note,
  .retention-note,
  .transfer-note {
    padding: 1rem;
  }

  .choice-note,
  .legal-note,
  .disclosure-note,
  .retention-policy,
  .objection-note,
  .verification-note,
  .privacy-summary,
  .related-documents {
    padding: 1.2rem;
  }

  .rights-list {
    padding: 1.2rem;
  }

  .rights-list ol {
    margin-left: 1.2rem;
  }

  .rights-list li {
    margin-bottom: 0.8rem;
  }

  .privacy-summary li {
    padding-left: 1.2rem;
  }
}

/* Cookie Policy specific styles */
.cookie-types {
  background-color: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.cookie-types h5 {
  color: #FFC107;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-types h5:first-child {
  margin-top: 0;
}

.third-party-cookies {
  background-color: rgba(156, 39, 176, 0.08);
  border-left: 4px solid #9C27B0;
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.cookie-choices {
  background-color: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.cookie-choices h5 {
  color: #2196F3;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cookie-choices h5:first-child {
  margin-top: 0;
}

.cookie-choices a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.cookie-choices a:hover {
  text-decoration: underline;
}

.cookie-summary {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
}

.cookie-summary h5 {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cookie-summary ul {
  margin-bottom: 0;
}

.cookie-summary li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.cookie-summary li:before {
  content: "•";
  color: #4CAF50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Refund Policy specific styles */
.refund-intro {
  background-color: rgba(244, 67, 54, 0.1);
  border-left: 4px solid #F44336;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.refund-intro p {
  margin: 0;
  color: #F44336;
  font-weight: 500;
}

.trial-reminder {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 8px;
}

.cancellation-details {
  background-color: rgba(96, 125, 139, 0.08);
  border: 1px solid rgba(96, 125, 139, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.cancellation-details h5 {
  color: #607D8B;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cancellation-details h5:first-child {
  margin-top: 0;
}

.exceptional-circumstances {
  background-color: rgba(33, 150, 243, 0.08);
  border: 1px solid rgba(33, 150, 243, 0.2);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.exceptional-circumstances h5 {
  color: #2196F3;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.exceptional-circumstances h5:first-child {
  margin-top: 0;
}

.process-timeline {
  background-color: rgba(76, 175, 80, 0.08);
  border-left: 4px solid #4CAF50;
  padding: 1.2rem;
  margin: 1rem 0;
  border-radius: 0 8px 8px 0;
}

.refund-summary {
  background-color: rgba(156, 39, 176, 0.08);
  border: 1px solid rgba(156, 39, 176, 0.2);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 8px;
}

.refund-summary h5 {
  color: #9C27B0;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.refund-summary ul {
  margin-bottom: 0;
}

.refund-summary li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.refund-summary li:before {
  content: "•";
  color: #9C27B0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.trial-recommendation {
  background-color: rgba(255, 193, 7, 0.15);
  border: 2px solid #FFC107;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 8px;
  text-align: center;
}

.trial-recommendation p {
  margin: 0;
  color: #FF9800;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .cookie-types,
  .cookie-choices,
  .cancellation-details,
  .exceptional-circumstances,
  .cookie-summary,
  .refund-summary {
    padding: 1.2rem;
  }

  .third-party-cookies,
  .process-timeline {
    padding: 1rem;
  }

  .refund-intro {
    padding: 1.2rem;
  }

  .trial-reminder,
  .trial-recommendation {
    padding: 1rem;
  }
}