:root {
  --color-mint: #E0F7FA;
  --color-indigo: #1A237E;
  --color-white: #FFFFFF;
  --color-cyan: #00E5FF;
  
  --radius-large: 30px;
}

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-indigo);
  background-color: var(--color-mint);
  overflow-x: hidden;
  /* Setup Snap Scrolling on the body/html */
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* Hide scrollbar for a cleaner full-screen look */
body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

a {
  text-decoration: none;
  color: inherit;
}

/* Floating Header */
.floating-header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(26, 35, 126, 0.1);
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-indigo);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--color-indigo);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--color-cyan);
}

/* Full Screen Sections */
.fs-section {
  width: 100vw;
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 5%; /* Padding to avoid header */
}

.theme-mint {
  background-color: var(--color-mint);
  color: var(--color-indigo);
}

.theme-indigo {
  background-color: var(--color-indigo);
  color: var(--color-white);
}

.theme-image {
  background-size: cover;
  background-position: center;
  position: relative;
  color: var(--color-white);
}

.theme-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 35, 126, 0.6); /* Indigo overlay */
  z-index: 1;
}

.theme-image > * {
  position: relative;
  z-index: 2;
}

/* Content Blocks */
.content-wrapper {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 50px;
  align-items: center;
}

.text-content {
  flex: 1;
}

.text-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.1;
}

.text-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

/* Articles Horizontal Scroll within a section */
.articles-scroll-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  width: 100%;
  -ms-overflow-style: none;  
  scrollbar-width: none; 
}

.articles-scroll-container::-webkit-scrollbar {
  display: none;
}

.article-card {
  min-width: 350px;
  background-color: var(--color-white);
  color: var(--color-indigo);
  border-radius: var(--radius-large);
  padding: 40px;
  scroll-snap-align: center;
  flex-shrink: 0;
  box-shadow: 0 15px 35px rgba(26, 35, 126, 0.05);
}

.article-card.dark-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.article-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: inherit;
}

.article-card p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* Contact Form */
.contact-container {
  background-color: var(--color-white);
  padding: 50px;
  border-radius: var(--radius-large);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(26, 35, 126, 0.1);
}

.theme-indigo .contact-container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.2);
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  width: 100%;
  padding: 18px 25px;
  border-radius: 50px;
  border: none;
  background-color: var(--color-mint);
  color: var(--color-indigo);
  font-size: 1.1rem;
  font-family: inherit;
}

.theme-indigo .form-control {
  background-color: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  outline: 3px solid var(--color-cyan);
}

textarea.form-control {
  border-radius: var(--radius-large);
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background-color: var(--color-cyan);
  color: var(--color-indigo);
  width: 100%;
  padding: 18px;
  border-radius: 50px;
  border: none;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-submit:hover {
  transform: translateY(-3px);
  background-color: #00B8D4;
}

/* Footer Section */
.footer-content {
  text-align: center;
  max-width: 800px;
}

.footer-content h2 {
  color: var(--color-cyan);
}

.footer-links {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--color-cyan);
}

/* Legal Pages Overrides */
.legal-page {
  overflow-y: auto;
  scroll-snap-type: none;
  height: auto;
}

.legal-page .fs-section {
  height: auto;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 100px;
  align-items: flex-start;
}

.legal-card {
  background-color: var(--color-white);
  border-radius: var(--radius-large);
  padding: 60px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  color: var(--color-indigo);
  box-shadow: 0 20px 50px rgba(26, 35, 126, 0.1);
}

.legal-card h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--color-indigo);
  text-align: center;
}

.legal-card h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-cyan);
}

.legal-card p, .legal-card ul {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.8;
}

.legal-card ul {
  padding-left: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .text-content h1 {
    font-size: 3rem;
  }
  .text-content p {
    text-align: center;
  }
  .nav-links {
    display: none; /* Hide on small screens, can use a hamburger if needed, but keeping it simple */
  }
  .floating-header {
    justify-content: center;
  }
  .article-card {
    min-width: 280px;
  }
}
