:root {
  --primary-blue: #1a56db;
  --light-blue: #3b82f6;
  --lighter-blue: #93c5fd;
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray: #6b7280;
  --dark-gray: #374151;
  --accent-blue: #1e40af;
  --success-green: #059669;
  --light-green: #d1fae5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: var(--white);
  color: var(--dark-gray);
  line-height: 1.6;
  min-height: 100vh;
  top: 0 !important;
}
.goog-gt-tt{
  display: none !important;
}

body > .skiptranslate {
  display: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styling */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
    left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.logo span {
  color: var(--light-blue);
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-links .cta-button,
.mobile-nav .cta-button {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.nav-links .cta-button:hover {
  background-color: var(--light-blue);
  color: var(--white);
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark-gray);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  flex-direction: column;
  align-items: center;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav li {
  margin: 0.8rem 0;
  list-style: none;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--primary-blue);
}

.mobile-nav .cta-button {
  margin-top: 0.5rem;
}

/* Hero section */
.hero {
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  color: var(--white);
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.animated-text {
  display: inline-block;
  min-width: 220px;
  text-align: left;
  position: relative;
}

.animated-text::after {
  content: "|";
  position: absolute;
  right: -8px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.animated-text.typing {
  animation: typing 0.5s steps(40, end);
}

.animated-text.deleting {
  animation: deleting 0.5s steps(40, end);
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes deleting {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.primary-button {
  background-color: var(--white);
  color: var(--primary-blue);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.primary-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.secondary-button {
  background-color: transparent;
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--white);
  transition: all 0.3s;
}

.secondary-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-image {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Core Services Section */
.features {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  background-color: var(--lighter-blue);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.feature-card p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.learn-more {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Investment Options Section */
.investment-options {
  padding: 5rem 0;
  background-color: var(--white);
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.investment-card {
  background-color: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.investment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.investment-image {
  height: 200px;
  overflow: hidden;
}

.investment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.investment-content {
  padding: 1.5rem;
}

.investment-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.investment-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.investment-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
}

.investment-meta span {
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 0.9rem;
}

/* About section */
.about {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--gray);
  margin: 0;
}

/* Testimonials section */
.testimonials {
  background-color: var(--lighter-blue);
  padding: 5rem 0;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--dark-gray);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  color: var(--dark-gray);
}

.author-info p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

/* CTA section */
.cta {
  padding: 5rem 0;
  background-color: var(--white);
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.cta p {
  color: var(--gray);
  margin-bottom: 2rem;
}
/* HOME END */
/* ABOUT START */
/* Page header */
.page-header {
  background: linear-gradient(to right, var(--primary-blue), var(--light-blue));
  color: var(--white);
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Section styling */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Video section */
.video-section {
  background-color: var(--off-white);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.video-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--dark-gray);
}

.video-info p {
  color: var(--gray);
}

/* Team section */
.team-section {
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: var(--light-blue);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 6px solid var(--light-blue);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}

.team-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  vertical-align: middle;
  aspect-ratio: 1 / 1;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.team-info p {
  color: var(--off-white);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-social a {
  color: var(--light-blue);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.team-social a:hover {
  color: var(--primary-blue);
}

/* Company Info section */
.company-info {
  background-color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.info-card {
  background-color: var(--off-white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--lighter-blue);
}

.info-item {
  margin-bottom: 1.5rem;
  display: flex;
}

.info-label {
  font-weight: 600;
  width: 150px;
  flex-shrink: 0;
}

.info-value {
  color: var(--gray);
}

.info-card address {
  font-style: normal;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* FAQ section */
.faq-section {
  background-color: var(--off-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark-gray);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: rgba(59, 130, 246, 0.05);
}

.faq-question i {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--gray);
}

/* CTA section */
.cta-section {
  background-color: var(--white);
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.primary-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.primary-button:hover {
  background-color: var(--light-blue);
  transform: translateY(-3px);
}
/* ABOUT END */

/* PLAN START */
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../img/altstat.jpg");
  background-size: cover;
  opacity: 0.1;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Plan filter */
.plan-filter {
  padding: 2rem 0;
  background-color: var(--off-white);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filter-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--white);
  color: var(--dark-gray);
  border: none;
}

.filter-tab:hover {
  background-color: rgba(59, 130, 246, 0.1);
}

.filter-tab.active {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* Plans section */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.plan-item {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.plan-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--success-green);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-top {
  padding: 2rem;
  background: linear-gradient(
    to bottom right,
    var(--primary-blue),
    var(--light-blue)
  );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.plan-top h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.plan-top .plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.plan-top .plan-price-details {
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

.plan-top::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.plan-premium .plan-top {
  background: linear-gradient(to bottom right, #34d399, #059669);
}

.plan-retirement .plan-button {
  background-color: #0369a1;
}
.plan-estate .plan-button {
  background-color: #d97706;
}
.plan-esg .plan-button {
  background-color: #6366f1;
}

.plan-elite .plan-top {
  background: linear-gradient(to bottom right, #6366f1, #4f46e5);
}
.plan-retirement .plan-top {
  background: linear-gradient(to bottom right, #0ea5e9, #0369a1);
}
.plan-estate .plan-top {
  background: linear-gradient(to bottom right, #f59e0b, #d97706);
}
.plan-esg .plan-top {
  background: linear-gradient(to bottom right, #6366f1, #8b5cf6);
}
.plan-content {
  padding: 2rem;
  flex-grow: 1;
}

.plan-list {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.plan-checkmark {
  color: var(--success-green);
  margin-right: 0.75rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.plan-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.05);
  margin: 1.5rem 0;
}

.plan-details {
  padding: 0 2rem 2rem;
}

.plan-detail-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.plan-detail-label {
  margin-right: 0.5rem;
  font-weight: 600;
}

.plan-action {
  padding: 0 2rem 2rem;
  margin-top: auto;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 0.9rem;
  text-align: center;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
}

.plan-button:hover {
  background-color: var(--accent-blue);
}

.plan-premium .plan-button {
  background-color: var(--success-green);
}

.plan-premium .plan-button:hover {
  background-color: #047857;
}

.plan-elite .plan-button {
  background-color: #4f46e5;
}

.plan-elite .plan-button:hover {
  background-color: #4338ca;
}

/* Additional info */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-green);
  color: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.info-card p {
  color: var(--gray);
}

/* Compare plans */
.plan-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.plan-compare-table thead {
  background-color: var(--primary-blue);
  color: var(--white);
}

.plan-compare-table th,
.plan-compare-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plan-compare-table th {
  font-weight: 600;
}

.plan-compare-table tbody tr:nth-child(even) {
  background-color: var(--off-white);
}

.plan-compare-table tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.05);
}

.plan-check {
  color: var(--success-green);
  font-weight: bold;
  font-size: 1.1rem;
}

.plan-blank {
  color: var(--gray);
}

.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--gray);
  margin-bottom: 2rem;
}

.primary-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.primary-button:hover {
  background-color: var(--accent-blue);
  transform: translateY(-3px);
}
/* PLAN END */
/* CONTACT START */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-wrapper {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-heading {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  outline: none;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  background-color: var(--white);
}

.contact-submit {
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
  align-self: flex-start;
}

.contact-submit:hover {
  background-color: var(--light-blue);
  transform: translateY(-2px);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-info-heading {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-detail-content {
  flex-grow: 1;
}

.contact-detail-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--dark-gray);
}

.contact-detail-text {
  color: var(--gray);
}

.contact-detail-link {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-link:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

.contact-hours {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 0.5rem;
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 250px;
  background-color: #eee;
  position: relative;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Office locations section */
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.office-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.office-image {
  height: 180px;
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-details {
  padding: 1.5rem;
}

.office-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.office-address {
  color: var(--gray);
  margin-bottom: 1rem;
}

.office-contact {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.office-icon {
  margin-right: 0.5rem;
  color: var(--primary-blue);
}

/* Contact section */

/* GUIDE */
.guide-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  position: relative;
}

.guide-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: start;
}

.guide-nav {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.guide-nav-title {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lighter-blue);
}

.guide-nav-list {
  list-style: none;
}

.guide-nav-item {
  margin-bottom: 0.75rem;
}

.guide-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--dark-gray);
  border-radius: 5px;
  transition: all 0.3s;
}

.guide-nav-link:hover,
.guide-nav-link.active {
  background-color: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
}

.guide-download {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  text-align: center;
}

.guide-download-title {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.guide-download-desc {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.guide-download-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.guide-download-button:hover {
  background-color: var(--light-blue);
}

.guide-content {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  width: 100%;
  overflow: hidden;
}

.guide-section {
  margin-bottom: 3rem;
}

.guide-section:last-child {
  margin-bottom: 0;
}

.guide-heading {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.guide-subheading {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin: 2rem 0 1rem;
}

.guide-text {
  margin-bottom: 1.5rem;
  color: var(--dark-gray);
}

.guide-text-highlight {
  background-color: rgba(59, 130, 246, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-weight: 600;
}

.guide-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.guide-list li {
  margin-bottom: 0.75rem;
}

.guide-tip {
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 5px;
}

.guide-tip-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.guide-tip-content {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.guide-chart {
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guide-chart img {
  width: 100%;
  height: auto;
  display: block;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.guide-table th {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
}

.guide-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.guide-table tr:nth-child(even) {
  background-color: var(--off-white);
}

.guide-cta {
  background-color: var(--off-white);
  border-radius: 10px;
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
}

.guide-cta-title {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.guide-cta-text {
  color: var(--gray);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.guide-cta-button {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
}

.guide-cta-button:hover {
  background-color: var(--light-blue);
  transform: translateY(-3px);
}

/* GUIDE END */
/* TERMS */
/* Terms-specific styles */
.terms-section {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.terms-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.terms-navigation {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.terms-navigation h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.terms-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.terms-nav-item a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--off-white);
  color: var(--dark-gray);
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.terms-nav-item a:hover {
  background-color: var(--light-blue);
  color: var(--white);
}

.terms-date {
  text-align: right;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.terms-section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lighter-blue);
}

.terms-article {
  margin-bottom: 3rem;
}

.terms-article:last-child {
  margin-bottom: 0;
}

.terms-heading {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.terms-heading:first-of-type {
  border-top: none;
  padding-top: 0;
}

.terms-paragraph {
  margin-bottom: 1.2rem;
  color: var(--dark-gray);
}

.terms-list {
  margin: 1.2rem 0 1.5rem 1.5rem;
}

.terms-list li {
  margin-bottom: 0.8rem;
}

.terms-highlight {
  color: var(--primary-blue);
  font-weight: 600;
}

.terms-link {
  color: var(--primary-blue);
  text-decoration: underline;
  transition: color 0.3s;
}

.terms-link:hover {
  color: var(--light-blue);
}

.terms-notice {
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 5px;
}

.terms-notice-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.terms-notice-content {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.terms-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--gray);
}

.terms-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.terms-print {
  display: inline-flex;
  align-items: center;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

.terms-print span {
  margin-left: 0.5rem;
}

.terms-print:hover {
  color: var(--primary-blue);
}

.terms-accept {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.terms-accept:hover {
  background-color: var(--light-blue);
}
/* TERMS END */
/* PRIVACY */
/* Privacy policy specific styles */
.privacy-section {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.privacy-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-navigation {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-navigation h2 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.privacy-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.privacy-nav-item a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--off-white);
  color: var(--dark-gray);
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.privacy-nav-item a:hover {
  background-color: var(--light-blue);
  color: var(--white);
}

.privacy-date {
  text-align: right;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.privacy-section-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lighter-blue);
}

.privacy-article {
  margin-bottom: 3rem;
}

.privacy-article:last-child {
  margin-bottom: 0;
}

.privacy-heading {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin: 2rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-heading:first-of-type {
  border-top: none;
  padding-top: 0;
}

.privacy-paragraph {
  margin-bottom: 1.2rem;
  color: var(--dark-gray);
}

.privacy-list {
  margin: 1.2rem 0 1.5rem 1.5rem;
}

.privacy-list li {
  margin-bottom: 0.8rem;
}

.privacy-highlight {
  color: var(--primary-blue);
  font-weight: 600;
}

.privacy-link {
  color: var(--primary-blue);
  text-decoration: underline;
  transition: color 0.3s;
}

.privacy-link:hover {
  color: var(--light-blue);
}

.privacy-notice {
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 5px;
}

.privacy-notice-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.privacy-notice-content {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.privacy-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--gray);
  text-align: center;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.privacy-table th {
  background-color: var(--primary-blue);
  color: var(--white);
  text-align: left;
  padding: 0.75rem 1rem;
}

.privacy-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.privacy-table tr:nth-child(even) {
  background-color: var(--off-white);
}

.privacy-contact {
  background-color: var(--off-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2.5rem;
}

.privacy-contact-heading {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.privacy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-contact-item {
  display: flex;
  align-items: flex-start;
}

.privacy-contact-label {
  font-weight: 600;
  width: 150px;
  flex-shrink: 0;
}

.privacy-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.privacy-print {
  display: inline-flex;
  align-items: center;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  margin-right: 1rem;
}

.privacy-print span {
  margin-left: 0.5rem;
}

.privacy-print:hover {
  color: var(--primary-blue);
}
/* PRIVACY END */
/* AUTH FORM */
/* Registration Form Styles */
.registration-section {
  padding: 5rem 0;
  background-color: var(--off-white);
}

.registration-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.registration-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lighter-blue);
  text-align: center;
}

.registration-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-section {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 1.5rem;
}

.form-group {
  flex: 1 0 100%;
  padding: 0 10px;
  margin-bottom: 1.2rem;
}

.form-group.half {
  flex: 1 0 50%;
}

.form-group.third {
  flex: 1 0 33.333%;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.required::after {
  content: "*";
  color: var(--red);
  margin-left: 4px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--dark-gray);
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-control.error {
  border-color: var(--red);
}

.form-error {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-error.show {
  display: block;
}

.form-help {
  color: var(--gray);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5 1.5-1.5L8 8.5 11.5 5 13 6.5l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}

.form-check-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.form-check {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.form-divider {
  margin: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.form-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--light-blue);
}

.password-strength {
  margin-top: 0.5rem;
}

.strength-meter {
  height: 5px;
  background-color: #e5e7eb;
  border-radius: 3px;
  margin-top: 0.25rem;
  overflow: hidden;
}

.strength-meter-fill {
  height: 100%;
  width: 0;
  transition: width 0.3s, background-color 0.3s;
}

.strength-text {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Tooltip styles */
.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  cursor: help;
}

.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background-color: var(--light-blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.tooltip-text {
  visibility: hidden;
  width: 250px;
  background-color: var(--dark-gray);
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-weight: normal;
  font-size: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--dark-gray) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.notice-box {
  background-color: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 5px;
}

.notice-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}
/* AUTH FORM END */
/* LOGIN */
/* Login Form Styles */
.login-section {
  padding: 5rem 0;
  background-color: var(--off-white);
  min-height: calc(100vh - 465px);
  /* Adjusted to ensure footer stays at bottom */
}

.login-container {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem;
  max-width: 500px;
  margin: 0 auto;
}

.login-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lighter-blue);
  text-align: center;
}

.login-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--dark-gray);
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-check-group {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.form-check {
  margin-right: 0.5rem;
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

.login-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--light-blue);
}

.forgot-password {
  color: var(--primary-blue);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.forgot-password:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

.login-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.register-link {
  margin-top: 0.5rem;
}

.register-link a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.register-link a:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

.login-alternatives {
  margin-top: 2rem;
  text-align: center;
}

.login-alternatives-title {
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.login-alternatives-title::before,
.login-alternatives-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.login-alternatives-title::before {
  left: 0;
}

.login-alternatives-title::after {
  right: 0;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: var(--white);
  color: var(--dark-gray);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  flex: 1;
  max-width: 120px;
}

.social-btn:hover {
  background-color: var(--off-white);
}

.social-btn i {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.alert {
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  color: var(--white);
  background-color: var(--red);
}

.alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* LOGIN END */

/* Footer */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: var(--lighter-blue);
}

.footer-desc {
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--white);
  font-size: 1.2rem;
  transition: opacity 0.3s;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-contact i {
  margin-right: 1rem;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Responsive design */
@media screen and (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-container,
  .investment-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .plan-compare-table th,
  .plan-compare-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .office-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-sidebar {
    position: static;
    margin-bottom: 2rem;
    width: 100%;
  }

  .guide-nav {
    margin-bottom: 1rem;
  }
  .terms-container {
    padding: 1.5rem;
  }

  .terms-section-title {
    font-size: 1.8rem;
  }

  .terms-heading {
    font-size: 1.3rem;
  }

  .terms-action {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .privacy-container {
    padding: 2rem;
  }
  .form-group.half,
  .form-group.third {
    flex: 1 0 100%;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    margin-bottom: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }

  .info-item {
    flex-direction: column;
  }

  .info-label {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 1.2rem;
    font-size: 0.9rem;
  }
  .plan-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .filter-tabs {
    flex-wrap: wrap;
  }

  .filter-tab {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .plan-compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .plan-compare-table th,
  .plan-compare-table td {
    padding: 0.8rem;
    font-size: 0.8rem;
  }
  .office-grid {
    grid-template-columns: 1fr;
  }
  .guide-heading {
    font-size: 1.8rem;
  }

  .guide-heading {
    font-size: 1.8rem;
  }

  .guide-subheading {
    font-size: 1.3rem;
  }

  .guide-content {
    padding: 1.5rem;
  }

  .guide-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .terms-container {
    box-shadow: none;
    padding: 0;
  }
  .privacy-container {
    padding: 1.5rem;
  }

  .privacy-section-title {
    font-size: 1.8rem;
  }

  .privacy-heading {
    font-size: 1.3rem;
  }

  .privacy-contact-item {
    flex-direction: column;
  }

  .privacy-contact-label {
    width: 100%;
    margin-bottom: 0.25rem;
  }
  .registration-container {
    padding: 1.5rem;
  }
}
@media print {
  header,
  footer,
  .privacy-navigation,
  .privacy-action {
    display: none;
  }

  .page-header {
    background: none;
    color: var(--dark-gray);
    padding: 1rem 0;
  }

  .privacy-container {
    box-shadow: none;
    padding: 0;
  }

  body {
    font-size: 12pt;
  }

  a {
    color: var(--dark-gray);
    text-decoration: none;
  }
}
