html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

.section-description a {
  text-decoration: none;
}

/* Hero Section */
.hero {
  background-color: #f8f9fa;
  width: 100%;
  height: 600px;  /* Reduced from 800px to bring stats closer */
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
} 

.hero-title {
  color: rgb(62, 126, 108);
  font-size: 48px;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 22px;
  margin-bottom: 40px;
  line-height: 1.4;
  color: rgba(27, 64, 54, 0.899);
}

.cta-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

/* Logged-out specific styles */
.logged-out .hero-container {
  text-align: center;
}

.logged-out .hero-text {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.logged-out .cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.logged-out #heroRegisterBtn {
  color: white;
  background-color: rgb(62, 126, 108);
  border: 1px solid rgb(62, 126, 108);
  width: 20%;
}

.logged-out #heroRegisterBtn:hover {
  background-color: white;
  color: rgb(62, 126, 108);
  border-color: rgba(93, 190, 163, 1);
}

.btn {
  display: inline-block;
  padding: 15px 20px;
  background-color: rgb(62, 126, 108);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Demo link base styling */
.demo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgb(62, 126, 108);
  font-size: 17px;
  height: 38px;
  text-align: center;
}

.demo-link:hover {
  text-decoration: underline;
}

/* How It Works Section */
.how-it-works-section {
  padding: 60px 0;
  background-color: #fff;
}

/* Override Bootstrap's container width for How It Works */
.how-it-works-section > .container {
  max-width: 1400px !important;
  width: 100% !important;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: rgb(62, 126, 108);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.2rem;
  color: #333;
}

/* 3-Column Grid Layout (Option C) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  max-width: 1300px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.step-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: rgb(93, 190, 163);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.step-card .step-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 28px auto;
  background: linear-gradient(135deg, rgba(62, 126, 108, 0.08) 0%, rgba(62, 126, 108, 0.04) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card .step-icon .cool-guy-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: invert(60%) sepia(50%) saturate(400%) hue-rotate(110deg) brightness(90%);
}

.step-card .step-number {
  font-size: 13px;
  font-weight: 700;
  color: rgb(62, 126, 108);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.step-card .step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 16px;
}

.step-card .step-description {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive: 3-column to 1-column on mobile */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Legacy styles for old layout - can be removed later */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.step {
  display: flex;
  align-items: center;
  text-align: left;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
}

.step-icon svg {
  width: 40px;
  height: 40px;
  fill: rgb(62, 126, 108);
}

.step-icon .cool-guy-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: invert(60%) sepia(50%) saturate(400%) hue-rotate(110deg) brightness(90%);
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: rgb(62, 126, 108);
}

.step-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.5;
}

/* CTA after How It Works */
.cta-after-how-it-works {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-after-how-it-works .btn {
  margin-right: 55px;
}

.cta-after-how-it-works .btn:hover {
  background-color: white;
  color: rgb(62, 126, 108);
  border-color: rgba(93, 190, 163, 1);
}

.cta-after-how-it-works .get-started-text {
  font-size: 20px;
  color: white;
}

/* styles for cta_guide_homepage.html */
.cta-guide-sec {
  width: 100vw;
  background-color: #f8f9fa;
  padding: 60px 0 120px; /* Increased bottom padding */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow-x: hidden;
  min-height: 800px; /* Added minimum height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cover-image-col {
  flex: 1;
  max-width: 50%;
}

.cover-image-col img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: auto;
  max-height: 500px;
}

.guide-text {
  line-height: 40px;
}

.guide-description-col {
  flex: 1;
  max-width: 50%;
}

.guide-description-col h2 {
  color: rgb(62, 126, 108);
  font-size: 2rem;
  margin-bottom: 20px;
}

.guide-description-col p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.guide-description-col ul {
  margin-bottom: 30px;
  padding-left: 20px;
  list-style-position: outside;
}

.guide-description-col li {
  margin-bottom: 20px;
  padding-left: 10px;
}

.guide-description-col .btn-primary {
  margin-top: 30px;
  padding: 10px 20px;
  background-color: rgb(62, 126, 108);
  border-color: rgb(76, 158, 134);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.guide-description-col .btn-primary:hover {
  background-color: white;
  color: rgb(62, 126, 108);
  border-color: rgba(93, 190, 163, 1);
}

/* Testimonials Section - Carousel */
.testimonials-section {
  padding: 80px 20px;
  background: #fff;
  overflow: hidden;
}

.testimonials-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: rgb(62, 126, 108);
  margin-bottom: 48px;
}

/* Carousel Container */
.carousel-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  padding-right: calc(50% - 200px);
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 380px;
  min-width: 380px;
  min-height: 280px;
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  scroll-snap-align: start;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-card:first-child {
  margin-left: 20px;
}

.testimonial-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
}

.testimonial-body {
  font-size: 0.95rem;
  color: #6B7280;
  font-style: italic;
  line-height: 1.5;
  flex: 1;
}

.testimonial-user {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #E5E7EB;
  padding-top: 14px;
  margin-top: 14px;
}

.user-name {
  font-weight: 700;
  color: #1F2937;
  font-size: 0.9rem;
}

.user-location {
  color: #9CA3AF;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Dot Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E7EB;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: rgb(62, 126, 108);
  width: 24px;
  border-radius: 4px;
}

.dot:hover:not(.active) {
  background: #D1D5DB;
}

/* Fade effect for peek cards */
.carousel-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 60px;
  width: 150px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
  pointer-events: none;
}

/* ==============================================
   LOGGED-IN HOMEPAGE - Two CTA Cards Layout
   ============================================== */

/* Logged-in Hero - taller to accommodate cards */
.logged-in .hero {
  height: auto;
  padding: 80px 0 60px;
}

.logged-in .hero-container {
  max-width: 1000px;
}

.logged-in .hero-text {
  margin-bottom: 50px;
}

/* Two CTA Cards Container */
.logged-in-cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 440px);
  justify-content: center;
  gap: 60px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logged-in CTA Card Base Styles */
.logged-in-cta-card {
  height: 460px;  /* Increased for more vertical breathing room */
  width: 440px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.logged-in-cta-card:hover {
  transform: translateY(-4px);
}

.logged-in-cta-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.logged-in-cta-card .card-front {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 60px 40px;  /* Increased vertical padding for more breathing room */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logged-in-cta-card .stat-icon {
  width: 140px;
  height: 140px;
  margin-bottom: 36px;  /* Increased for more space below icons */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logged-in-cta-card .stat-icon .cool-guy-icon {
  width: 140px;
  height: 140px;
  filter: invert(60%) sepia(50%) saturate(400%) hue-rotate(110deg) brightness(90%);
}

.logged-in-cta-card .cta-headline {
  font-size: 32px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 12px;
}

.logged-in-cta-card .cta-subtext {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 28px;
  line-height: 1.5;
}

.logged-in-cta-card .cta-button-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(62, 126, 108, 0.6);
  color: rgb(62, 126, 108);
  background: transparent;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.logged-in-cta-card .cta-button-ghost svg {
  stroke: rgb(62, 126, 108);
  transition: transform 0.2s ease;
  width: 20px;
  height: 20px;
}

/* Free Evaluation Card - Green tint */
.logged-in-cta-card.evaluation .card-front {
  background: linear-gradient(135deg, #F0FAF7 0%, #E8F5F0 100%);
  border: 1px solid rgb(93, 190, 163);
}

.logged-in-cta-card.evaluation:hover .card-front {
  border-color: rgb(62, 126, 108);
  background: linear-gradient(135deg, #E8F5F0 0%, #D8EFE8 100%);
}

.logged-in-cta-card.evaluation:hover .cta-button-ghost {
  border-color: rgb(62, 126, 108);
  background: rgba(62, 126, 108, 0.08);
}

.logged-in-cta-card.evaluation:hover .cta-button-ghost svg {
  transform: translateX(2px);
}

/* Dashboard Card - Neutral with subtle accent */
.logged-in-cta-card.dashboard .card-front {
  background: white;
  border: 1px solid #E5E7EB;
}

.logged-in-cta-card.dashboard:hover .card-front {
  border-color: rgb(93, 190, 163);
  box-shadow: 0 8px 24px rgba(62, 126, 108, 0.12);
}

.logged-in-cta-card.dashboard:hover .cta-button-ghost {
  border-color: rgb(62, 126, 108);
  background: rgba(62, 126, 108, 0.06);
}

.logged-in-cta-card.dashboard:hover .cta-button-ghost svg {
  transform: translateX(2px);
}

/* Stats Headline for logged-in users */
.stats-headline {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #9CA3AF;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

/* Responsive - Logged-in CTA Cards */
@media (max-width: 991px) {
  .logged-in-cta-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    padding: 0 20px;
  }

  .logged-in-cta-card {
    height: 350px;
    width: 100%;
  }

  .logged-in-cta-card .stat-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }

  .logged-in-cta-card .stat-icon .cool-guy-icon {
    width: 100px;
    height: 100px;
  }

  .logged-in-cta-card .cta-headline {
    font-size: 24px;
  }

  .logged-in-cta-card .cta-subtext {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .logged-in-cta-card .cta-button-ghost {
    padding: 12px 24px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .logged-in-cta-cards {
    grid-template-columns: 1fr;
    max-width: 350px;
    gap: 24px;
  }

  .logged-in-cta-card {
    height: 320px;
  }

  .logged-in-cta-card .stat-icon {
    width: 90px;
    height: 90px;
  }

  .logged-in-cta-card .stat-icon .cool-guy-icon {
    width: 90px;
    height: 90px;
  }

  .logged-in-cta-card .cta-headline {
    font-size: 22px;
  }

  .logged-in-cta-card .cta-subtext {
    font-size: 14px;
  }

  .logged-in-cta-card .cta-button-ghost {
    padding: 10px 20px;
    font-size: 14px;
  }

  .stats-headline {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

/* ==============================================
   MEDIA QUERIES - Organized by screen size
   ============================================== */

/* Extra small devices (phones) */
@media (max-width: 430px) {
  /* Hero section adjustments */
  .hero-title {
    font-size: 40px !important;
  }
  
  .hero-text {
    font-size: 22px !important;
    padding: 0 10px !important;
  }
  
  .logged-in .hero-title {
    line-height: 1.4;
    font-size: 36px !important;
  }
  
  /* Navigation & Login */
  .logged-out .demo-link {
    display: block;
    width: 65%;
    margin-top: 5px;
  }
  
  .logged-out #login.demo-link {
    display: inline-flex !important;
    width: auto !important;
    margin-top: 0 !important;
  }
  
  /* CTAs and buttons - LOGGED OUT */
  .logged-out .cta-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px !important;
  }
  
  .logged-out #heroRegisterBtn {
    font-size: 18px;
    display: block;
    width: 65%;
    margin-bottom: 15px;
    padding: 15px;
    text-align: center;
  }
  
  /* CTAs and buttons - LOGGED IN */
  .logged-in .cta-container {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 15px !important;
  }

  .logged-in #evaluationBtn {
    width: 65% !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    font-size: 18px !important;
    padding: 15px !important;
  }

  .logged-in .demo-link {
    display: block !important;
    width: 65% !important;
    text-align: center !important;
    margin-top: 5px !important;
  }
  
  /* Generic evaluation button styling */
  #evaluationBtn {
    white-space: nowrap;
    width: auto !important;
    min-width: 210px;
    font-size: 22px !important;
    padding: 20px 20px !important;
  }
  
  .cta-after-how-it-works {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }
  
  .cta-after-how-it-works .btn {
    width: 60% !important;
    text-align: center;
    margin: 0 0 15px 0;
    margin-right: 0 !important;
  }
  
  .cta-after-how-it-works .login-link {
    width: 100%;
    text-align: center;
    margin-top: 15px; 
    margin-left: 0; 
  }
  
  /* Guide section */
  .guide-description-col .btn-primary {
    width: 50% !important; 
    max-width: 200px; 
    font-size: 20px !important;     
    margin: 15px auto 5px auto;
    display: block;
    padding: 12px 15px; 
  }
  
  /* Guide content fix for small screens */
  .cta-guide-sec {
    padding: 30px 0 60px;
  }
  
  .guide-content {
    flex-direction: column;
    align-items: center;
  }
  
  .cover-image-col {
    max-width: 80%;
    margin-bottom: 20px;
  }
  
  .guide-description-col {
    max-width: 90%;
    padding: 0 15px;
  }
  
  /* Testimonials Carousel - Mobile */
  .testimonials-section {
    padding: 40px 10px;
  }

  .testimonial-card {
    flex: 0 0 280px;
    min-width: 280px;
    min-height: 260px;
    padding: 20px;
  }

  .testimonial-card:first-child {
    margin-left: 10px;
  }

  .carousel-track {
    padding-right: 60px;
  }

  .carousel-wrapper::after {
    width: 80px;
  }

  .testimonials-heading {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .testimonial-headline {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .testimonial-body {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .testimonial-user {
    padding-top: 12px;
    margin-top: 12px;
  }

  .user-name {
    font-size: 0.85rem;
  }

  .user-location {
    font-size: 0.75rem;
  }
}

/* Small mobile devices */
@media (min-width: 431px) and (max-width: 576px) {
  /* Hero section */
  .hero {
    height: auto;
    min-height: 400px;
    padding: 40px 0;
  }
  
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    height: 100%;
  }
  
  .hero-title {
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }
  
  .hero-text {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 100%;
    text-align: center;
  }
  
  /* Logged states */
  .logged-out .hero-text,
  .logged-out .cta-container {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .logged-out .cta-container {
    flex-direction: column;
    align-items: center;
  }
  
  .logged-out #evaluationBtn {
    margin: 0 0 15px 0;
  }
  
  .logged-in .hero-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px 20px;
    min-height: 400px;
    text-align: center;
  }
  
  .logged-in .hero-title {
    margin-bottom: 30px;
    font-size: 32px;
  }
  
  .logged-in .hero-text {
    margin: 20px 0 40px;
    line-height: 1.5;
  }
  
  /* CTA section - Generic */
  .cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
  
  /* Ensure logged-in users get the same centered layout */
  .logged-in .cta-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 20px !important;
  }

  .logged-in .demo-link {
    width: 130px !important;
    text-align: center !important;
    margin-top: 10px !important;
  }
  
  .btn {
    width: 130px !important;
    text-align: center;
    padding: 15px;
  }
  
  /* Guide section */
  .guide-description-col h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* Small tablets and large phones */
@media (min-width: 577px) and (max-width: 598px) {
  .cover-image-col img {
    max-height: 300px;
  }
  
  .guide-description-col ul {
    list-style-type: none;
    padding-left: 25px;
  }
  
  .guide-description-col li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
  }
  
  .guide-description-col li:before {
    content: "•";
    color: rgb(62, 126, 108);
    font-weight: bold;
    position: absolute;
    left: 0;
  }
}

/* Medium-small devices */
@media (min-width: 540px) and (max-width: 720px) {
  .logged-out .cta-container {
    gap: 25px !important;
  }
}

/* Medium devices (landscape tablets) */
@media (min-width: 599px) and (max-width: 768px) {
  .hero {
    height: 500px;  /* Reduced from 650px */
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-text {
    font-size: 24px;
  }
  
  .logged-out .hero-text,
  .logged-out .cta-container {
    max-width: 100%;
    padding: 4%;
    gap: 60px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  /* Steps section */
  .step {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .step-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  /* CTA and buttons */
  #evaluationBtn {
    font-size: 22px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  
  .how-it-works-section .cta-after-how-it-works {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 5%;
  }
  
  .how-it-works-section .cta-after-how-it-works .btn {
    margin-right: 55px;
  }
  
  /* Guide section */
  .cover-image-col {
    margin-bottom: 30px;
    padding-right: 0;
  }
  
  .cover-image-col img {
    max-height: 350px;
  }
  
  .guide-text {
    padding-left: 25px;
  }
  
  /* Testimonials Carousel - Tablet */
  .testimonial-card {
    flex: 0 0 340px;
    min-width: 340px;
  }
}

/* Large devices (tablets and small laptops) */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-title {
    font-size: 52px;
  }
  
  .hero-text {
    font-size: 24px;
    line-height: 1.8;
  }
  
  #evaluationBtn {
    font-size: 22px !important;
  }
  
  .learn-more {
    font-size: 20px;
  }
  
  /* Guide section */
  .guide-content {
    flex-direction: column;
  }
  
  .cover-image-col,
  .guide-description-col {
    max-width: 100%;
  }
  
  .cover-image-col img {
    max-height: 400px;
  }
  
  .guide-description-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .guide-description-col ul {
    padding-left: 30px;
    align-self: flex-start;
  }
  
  .guide-description-col li {
    padding-left: 15px;
  }
  
  .guide-description-col .btn-primary {
    align-self: center;
    font-size: 22px;
  }
  
  /* CTA section */
  .logged-out .cta-container {
    padding: 5%;
    gap: 58px;
  }
  
  .cta-after-how-it-works {
    padding: 5%;
  }
  
  .cta-after-how-it-works .get-started-text {
    font-size: 22px;
  }
  
  .cta-container {
    padding: 5%;
  }
  
  .login-link {
    font-size: 20px;
  }
}

/* iPad Pro specific */
@media (min-width: 1024px) and (max-width: 1366px) {
  .hero-title {
    font-size: 52px;
  }
  
  .hero-text {
    font-size: 24px;
    line-height: 1.8;
  }
  
  #evaluationBtn {
    font-size: 24px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  
  .learn-more {
    font-size: 20px;
  }
  
  /* Guide section */
  .guide-content {
    flex-direction: column;
  }
  
  .cover-image-col,
  .guide-description-col {
    max-width: 100%;
  }
  
  .cover-image-col img {
    max-height: 400px;
  }
  
  .guide-description-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .guide-description-col ul {
    padding-left: 30px;
    align-self: flex-start;
  }
  
  .guide-description-col li {
    padding-left: 15px;
  }
  
  .guide-description-col .btn-primary {
    align-self: center;
    font-size: 22px;
  }
  
  /* CTA section */
  .logged-out .cta-container {
    padding: 5%;
    gap: 60px;
  }
  
  .cta-after-how-it-works {
    padding: 5%;
  }
  
  .cta-after-how-it-works .get-started-text {
    font-size: 22px;
  }
  
  .cta-container {
    padding: 5%;
  }
  
  .login-link {
    font-size: 20px;
  }
  
  /* Fix for testimonials on iPad Pro */
  .cta-guide-sec {
    min-height: auto;
  }
}