/* ======= CSS Variables ======= */
:root {
  /* Color Palette - Monochromatic Blue */
  --primary-color: #2a5caa;
  --primary-light: #3d71c7;
  --primary-dark: #1d4380;
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );

  --secondary-color: #e8f0fe;
  --secondary-light: #ffffff;
  --secondary-dark: #c5d6f2;

  --accent-color: #ff6b6b;
  --accent-light: #ff8989;
  --accent-dark: #e63e3e;

  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #7a7a7a;
  --text-white: #ffffff;

  --background-dark: #f0f5ff;
  --background-light: #ffffff;

  /* Typography */
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Merriweather", serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);

  /* Borders */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ======= Base Styles ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  color: var(--text-medium);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--background-light);
}

section:nth-of-type(1) {
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--text-dark);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ======= Utility Classes ======= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mb-5 {
  margin-bottom: var(--spacing-xl);
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

.mt-5 {
  margin-top: var(--spacing-xl);
}

.mt-6 {
  margin-top: var(--spacing-xxl);
}

.py-1 {
  padding-top: var(--spacing-xs);
  padding-bottom: var(--spacing-xs);
}

.py-2 {
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.py-3 {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.py-4 {
  padding-top: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

.py-5 {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.section {
  padding: var(--spacing-xl) 0;
}

.has-background-light {
  background-color: var(--background-dark);
}

.has-text-centered {
  text-align: center;
}

.has-text-white {
  color: var(--text-white);
}

/* ======= Button Styles ======= */
.button,
button,
input[type="submit"] {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-white);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button:active,
button:active,
input[type="submit"]:active {
  transform: translateY(0);
}

.button.is-primary {
  background-color: var(--primary-color);
  color: white;
}

.button.is-primary:hover {
  background-color: var(--primary-light);
}

.button.is-large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.button.is-fullwidth {
  width: 100%;
  display: block;
}

/* ======= Navbar Styles ======= */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar.is-scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.25rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  height: 3.25rem;
}

.navbar-brand h1 {
  margin-bottom: 0;
}

.navbar-burger {
  color: var(--text-dark);
  background: none;
  appearance: none;
  border: none;
  cursor: pointer;
  display: block;
  height: 3.25rem;
  position: relative;
  width: 3.25rem;
  margin-left: auto;
}

.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  transform-origin: center;
  transition-duration: 0.2s;
  transition-property: background-color, opacity, transform;
  transition-timing-function: ease-out;
  width: 16px;
}

.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}

.navbar-menu {
  display: none;
}

.navbar-menu.is-active {
  display: block;
}

.navbar-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-medium);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.navbar-item:hover {
  color: var(--primary-color);
}

.navbar-end {
  margin-left: auto;
}

/* ======= Hero Section ======= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  overflow: hidden;
}

.hero.is-fullheight {
  min-height: 100vh;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: transform 0.5s ease;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--spacing-xl) var(--spacing-md);
}

.hero:hover .hero-image {
  transform: scale(1.05);
}

.hero .title {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ======= Services Section ======= */
.service-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.service-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.service-card .content {
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

/* ======= Pricing Section ======= */
.pricing-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-light);
  position: relative;
  z-index: 1;
}

.pricing-card.featured {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--primary-light);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-card .title {
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-family: var(--heading-font);
}

.pricing-card .content {
  margin-bottom: var(--spacing-lg);
  width: 100%;
}

.pricing-card ul {
  margin-bottom: var(--spacing-lg);
  padding-left: 0;
}

.pricing-card ul li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid var(--secondary-dark);
  display: flex;
  align-items: center;
}

.pricing-card ul li::before {
  content: "✓";
  color: var(--primary-color);
  margin-right: var(--spacing-xs);
  font-weight: bold;
}

/* ======= Vision Section ======= */
.vision-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* ======= FAQ Section ======= */
.faq-item {
  margin-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--secondary-dark);
  padding-bottom: var(--spacing-lg);
}

.faq-question {
  margin-bottom: var(--spacing-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-question::after {
  content: "+";
  margin-left: auto;
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ======= Timeline Section ======= */
.timeline {
  position: relative;
  padding: var(--spacing-lg) 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: var(--primary-light);
  transform: translateX(-50%);
}

.timeline .columns {
  margin-bottom: var(--spacing-xl);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.image-container:hover img {
  transform: scale(1.05);
}

/* ======= Research and Analysis Section ======= */
.research-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ======= Resources Section ======= */
.resource-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-light);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.resource-card .card-content {
  padding: var(--spacing-lg);
  text-align: center;
  width: 100%;
}

.resource-card .title {
  margin-bottom: var(--spacing-sm);
}

.resource-card p {
  margin-bottom: var(--spacing-lg);
}

/* ======= Feature Box Section ======= */
.feature-box {
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  background-color: var(--background-light);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-box .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
}

.feature-box .title {
  margin-bottom: var(--spacing-sm);
  align-self: flex-start;
}

.feature-box p {
  margin-bottom: 0;
}

/* ======= Testimonial Section ======= */
.testimonial-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-light);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.testimonial-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.testimonial-card:hover .card-image img {
  transform: scale(1.05);
}

.testimonial-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
}

.testimonial-card .title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.testimonial-card .client-name {
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
  margin-top: var(--spacing-md);
}

/* ======= Blog Section ======= */
.blog-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--background-light);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .card-image img {
  transform: scale(1.05);
}

.blog-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.blog-card .date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
}

.blog-card .content {
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.blog-card .button {
  align-self: flex-start;
}

/* ======= Contact Section ======= */
.contact-form {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
}

.field {
  margin-bottom: var(--spacing-md);
}

.label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 700;
  color: var(--text-dark);
}

.input,
.textarea,
.select select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--secondary-dark);
  border-radius: var(--border-radius-md);
  background-color: var(--secondary-light);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.input:focus,
.textarea:focus,
.select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(42, 92, 170, 0.25);
}

.select {
  position: relative;
  width: 100%;
}

.select::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-medium);
  font-size: 0.8rem;
}

.select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  margin-right: var(--spacing-xs);
  margin-top: 0.25em;
}

.contact-info {
  padding: var(--spacing-lg);
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.info-item {
  margin-bottom: var(--spacing-lg);
}

.info-item h3 {
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: center;
}

.info-item h3 i {
  margin-right: var(--spacing-sm);
  color: var(--primary-color);
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-container img {
  width: 100%;
  display: block;
}

/* ======= Footer Section ======= */
.footer {
  background-color: var(--text-dark);
  color: var(--text-white);
  padding: var(--spacing-xl) 0;
}

.footer .title {
  color: var(--text-white);
}

.footer p {
  color: var(--secondary-color);
}

.footer ul {
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: var(--spacing-xs);
}

.footer ul li a {
  color: var(--secondary-color);
  transition: color var(--transition-fast);
}

.footer ul li a:hover {
  color: var(--text-white);
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links li {
  margin-bottom: var(--spacing-sm);
}

.social-links a {
  color: var(--secondary-color);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
}

.social-links a:hover {
  color: var(--text-white);
}

.social-links a::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: var(--spacing-sm);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.social-links a[href*="facebook"]::before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e8f0fe"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H8.9V12h1.5v-1.3c0-1.5.9-2.3 2.3-2.3.7 0 1.3.1 1.3.1v1.5h-.7c-.7 0-1 .4-1 .9V12h1.6l-.3 1.9h-1.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"/></svg>');
}

.social-links a[href*="instagram"]::before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e8f0fe"><path d="M12 2c-2.7 0-3.1 0-4.1.1-1.1 0-1.8.2-2.4.5-.7.3-1.2.6-1.7 1.2-.6.5-.9 1.1-1.2 1.7-.3.6-.5 1.3-.5 2.4-.1 1-.1 1.4-.1 4.1s0 3.1.1 4.1c0 1.1.2 1.8.5 2.4.3.7.6 1.2 1.2 1.7.5.6 1.1.9 1.7 1.2.6.3 1.3.5 2.4.5 1 .1 1.4.1 4.1.1s3.1 0 4.1-.1c1.1 0 1.8-.2 2.4-.5.7-.3 1.2-.6 1.7-1.2.6-.5.9-1.1 1.2-1.7.3-.6.5-1.3.5-2.4.1-1 .1-1.4.1-4.1s0-3.1-.1-4.1c0-1.1-.2-1.8-.5-2.4-.3-.7-.6-1.2-1.2-1.7-.5-.6-1.1-.9-1.7-1.2-.6-.3-1.3-.5-2.4-.5-1-.1-1.4-.1-4.1-.1zm0 1.8c2.7 0 3 0 4 .1 1 0 1.5.2 1.9.4.5.2.8.4 1.1.7.3.3.6.7.7 1.1.1.4.3.9.4 1.9.1 1 .1 1.3.1 4s0 3-.1 4c0 1-.2 1.5-.4 1.9-.2.5-.4.8-.7 1.1-.3.3-.7.6-1.1.7-.4.1-.9.3-1.9.4-1 .1-1.3.1-4 .1s-3 0-4-.1c-1 0-1.5-.2-1.9-.4-.5-.2-.8-.4-1.1-.7-.3-.3-.6-.7-.7-1.1-.1-.4-.3-.9-.4-1.9-.1-1-.1-1.3-.1-4s0-3 .1-4c0-1 .2-1.5.4-1.9.2-.5.4-.8.7-1.1.3-.3.7-.6 1.1-.7.4-.1.9-.3 1.9-.4 1-.1 1.3-.1 4-.1z"/><path d="M12 15.3c-1.8 0-3.3-1.5-3.3-3.3 0-1.8 1.5-3.3 3.3-3.3 1.8 0 3.3 1.5 3.3 3.3 0 1.8-1.5 3.3-3.3 3.3zm0-8.3c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5z"/><circle cx="17.3" cy="6.7" r="1.2"/></svg>');
}

.social-links a[href*="twitter"]::before {
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e8f0fe"><path d="M22 5.8a8.2 8.2 0 0 1-2.3.6 4 4 0 0 0 1.8-2.2 8.2 8.2 0 0 1-2.6 1 4 4 0 0 0-6.9 3.6A11.5 11.5 0 0 1 3.7 4.5a4 4 0 0 0 1.3 5.4A4 4 0 0 1 3 9.3v.1a4 4 0 0 0 3.2 4 4 4 0 0 1-1.8 0 4 4 0 0 0 3.8 2.8A8.1 8.1 0 0 1 2 18.3a11.5 11.5 0 0 0 6.2 1.8c7.5 0 11.6-6.2 11.6-11.6v-.5A8.2 8.2 0 0 0 22 5.8z"/></svg>');
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
}

/* ======= Additional Pages ======= */
.success-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--spacing-xl);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.privacy-page,
.terms-page {
  padding-top: 120px;
}

.privacy-content,
.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-xl);
}

.card {
  margin-bottom: 1.5rem;
  overflow: hidden;
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
    0 0 0 1px rgba(10, 10, 10, 0.02);
}

.content {
  width: 100%;
}

/* ======= Responsive Styles ======= */
@media screen and (min-width: 769px) {
  .navbar-menu {
    display: flex;
  }

  .navbar-end {
    display: flex;
    align-items: center;
  }

  .navbar-burger {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .navbar-menu {
    background-color: white;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .hero .title {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1.2rem;
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .timeline::before {
    left: 0;
  }

  .columns {
    flex-direction: column;
  }

  .column {
    width: 100% !important;
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .column.is-one-third {
    width: 50% !important;
  }
}

@media screen and (max-width: 480px) {
  .hero .title {
    font-size: 1.5rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .section {
    padding: var(--spacing-md) var(--spacing-sm);
  }
}
