/* Base Styles */
:root {
  --navy: #1d1e5b;
  --royal-blue: #305ef3;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --border-radius: 0.4rem;
  --box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --box-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 4px 4px -2px rgba(0, 0, 0, 0.06);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --box-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s ease-in-out;
  --icon-size: 22px;
  --icon-size-md: 25px;
  --icon-size-lg: 32px;
  --icon-size-sm: 14px;
  --icon-stroke-width: 2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px; /* Reduced from 16px */
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.5; /* Reduced from 1.6 */
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25; /* Reduced from 1.3 */
  margin-bottom: 0.65rem; /* Reduced from 0.75rem */
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1140px; /* Reduced from 1200px */
  margin: 0 auto;
  padding: 0 1.25rem; /* Reduced from 1.5rem */
}

.section {
  padding: 3.5rem 0; /* Reduced from 4rem */
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0; /* Reduced from 6rem */
  }
}

.section-divider {
  display: flex;
  justify-content: center;
  margin: -2.25rem 0; /* Reduced from -2.5rem */
  position: relative;
  z-index: 10;
  transform: scale(0.75); /* Reduced from 0.8 */
  transition: transform 0.3s ease;
  background-image: url("../img/arrow-divider.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.section-divider:hover {
  transform: scale(0.85); /* Reduced from 0.9 */
}

.section-divider svg {
  width: 110px; /* Reduced from 120px */
  height: 36px; /* Reduced from 40px */
  color: var(--royal-blue);
}

.two-col-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* Reduced from 3rem */
}

@media (min-width: 768px) {
  .two-col-layout {
    flex-direction: row;
  }

  .two-col-layout .col {
    flex: 1;
  }
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

.max-width-md {
  max-width: 720px; /* Reduced from 768px */
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 0.9rem; /* Reduced from 1rem */
}

.mt-8 {
  margin-top: 1.8rem; /* Reduced from 2rem */
}

.relative {
  position: relative;
}

/* Typography */
.page-title {
  font-size: 1.8rem; /* Reduced from 2rem */
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 2.5rem; /* Reduced from 2.75rem */
  }
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: -0.45rem; /* Reduced from -0.5rem */
  left: 0;
  width: 54px; /* Reduced from 60px */
  height: 3px;
  background-color: var(--royal-blue);
}

.text-center .page-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title {
  font-size: 1.6rem; /* Reduced from 1.75rem */
  margin-bottom: 2.25rem; /* Reduced from 2.5rem */
  text-align: center;
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2rem; /* Reduced from 2.25rem */
  }
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -0.45rem; /* Reduced from -0.5rem */
  left: 0;
  width: 45px; /* Reduced from 50px */
  height: 3px;
  background-color: var(--royal-blue);
}

.text-center .section-title {
  display: inline-block;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title.light {
  color: var(--white);
}

.section-title.light::after {
  background-color: var(--white);
}

.section-title.text-left {
  text-align: left;
}

.section-title.text-left::after {
  left: 0;
  transform: none;
}

.lead-text {
  font-size: 1.05rem; /* Reduced from 1.125rem */
  color: var(--gray-600);
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
  line-height: 1.5; /* Reduced from 1.6 */
}

@media (min-width: 768px) {
  .lead-text {
    font-size: 1.15rem; /* Reduced from 1.25rem */
  }
}

.light-text {
  color: var(--white);
  opacity: 0.9;
  max-width: 650px; /* Reduced from 700px */
  margin: 0 auto 1.8rem; /* Reduced from 2rem */
  font-size: 0.95rem; /* Reduced from 1rem */
}

@media (min-width: 768px) {
  .light-text {
    font-size: 1.05rem; /* Reduced from 1.125rem */
  }
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem; /* Reduced from 4.5rem */
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.15rem; /* Reduced from 1.25rem */
  color: var(--navy);
  position: relative;
  padding-left: 0.45rem; /* Reduced from 0.5rem */
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.35rem; /* Reduced from 1.5rem */
  }
}

.logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1.35rem; /* Reduced from 1.5rem */
  background-color: var(--royal-blue);
}

.desktop-nav {
  display: none;
}

.nav-link {
  display: inline-block;
  padding: 0.45rem 0.65rem; /* Reduced from 0.5rem 0.75rem */
  color: var(--gray-700);
  font-weight: 500;
  position: relative;
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .nav-link {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.65rem; /* Reduced from 0.75rem */
  right: 0.65rem; /* Reduced from 0.75rem */
  height: 2px;
  background-color: var(--royal-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--royal-blue);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  display: inline-block;
  padding: 0.45rem 0.65rem; /* Reduced from 0.5rem 0.75rem */
  color: var(--gray-700);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem; /* Reduced from 0.9rem */
  font-weight: 500;
  position: relative;
}

@media (min-width: 768px) {
  .dropdown-btn {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.dropdown-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.65rem; /* Reduced from 0.75rem */
  right: 0.65rem; /* Reduced from 0.75rem */
  height: 2px;
  background-color: var(--royal-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.dropdown-btn:hover::after,
.dropdown-btn.active::after {
  transform: scaleX(1);
}

.dropdown-btn:hover,
.dropdown-btn.active {
  color: var(--royal-blue);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px; /* Reduced from 220px */
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-md);
  z-index: 1;
  padding: 0.45rem 0; /* Reduced from 0.5rem */
  transform: translateY(9px); /* Reduced from 10px */
  transition: transform 0.3s ease;
}

.dropdown-content a {
  display: block;
  padding: 0.65rem 1.15rem; /* Reduced from 0.75rem 1.25rem */
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .dropdown-content a {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.dropdown-content a:hover,
.dropdown-content a.active {
  background-color: var(--light-gray);
  color: var(--royal-blue);
}

.dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(0);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.45rem; /* Reduced from 0.5rem */
  z-index: 101;
}

.menu-icon {
  display: block;
  width: 22px; /* Reduced from 24px */
  height: 2px;
  background-color: var(--gray-700);
  position: relative;
  transition: background-color 0.3s ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  width: 22px; /* Reduced from 24px */
  height: 2px;
  background-color: var(--gray-700);
  transition: transform 0.3s ease;
}

.menu-icon::before {
  top: -7px; /* Reduced from -8px */
}

.menu-icon::after {
  bottom: -7px; /* Reduced from -8px */
}

.mobile-menu-btn.active .menu-icon {
  background-color: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .menu-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1.35rem 0; /* Reduced from 1.5rem */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: 0.65rem 0; /* Reduced from 0.75rem */
  font-size: 1.05rem; /* Reduced from 1.125rem */
}

.mobile-dropdown-header {
  font-weight: 600;
  padding: 0.65rem 0; /* Reduced from 0.75rem */
  cursor: pointer;
  font-size: 1.05rem; /* Reduced from 1.125rem */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-header::after {
  content: "+";
  font-size: 1.15rem; /* Reduced from 1.25rem */
}

.mobile-dropdown-header.active {
  color: var(--royal-blue);
}

.mobile-dropdown-header.active::after {
  content: "-";
}

.mobile-dropdown-content {
  display: none;
  padding-left: 1.15rem; /* Reduced from 1.25rem */
}

.mobile-dropdown-content.active {
  display: block;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.65rem; /* Reduced from 0.75rem */
  }

  .mobile-menu-btn {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem; /* Reduced from 0.75rem 1.5rem */
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .btn {
    font-size: 0.95rem; /* Reduced from 1rem */
    padding: 0.75rem 1.6rem; /* Reduced from 0.875rem 1.75rem */
  }
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-sm {
  padding: 0.45rem 0.9rem; /* Reduced from 0.5rem 1rem */
  font-size: 0.8rem; /* Reduced from 0.875rem */
}

.btn-primary {
  background-color: var(--royal-blue);
  color: var(--white);
  border: 1px solid var(--royal-blue);
  box-shadow: 0 4px 6px rgba(48, 94, 243, 0.2);
}

.btn-primary:hover {
  background-color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(29, 30, 91, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.2);
}

.btn-outline-blue {
  background-color: transparent;
  color: var(--royal-blue);
  border: 2px solid var(--royal-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem; /* Reduced from 0.5rem */
}

.btn-outline-blue:hover {
  background-color: var(--royal-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(48, 94, 243, 0.2);
}

.btn-outline-blue svg {
  transition: transform 0.3s ease;
}

.btn-outline-blue:hover svg {
  transform: translateX(4px);
}

.btn-full {
  display: block;
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 4.5rem 0; /* Reduced from 5rem */
  position: relative;
  color: var(--white);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0; /* Reduced from 7rem */
  }
}

/* Hero Background Image */
.hero-with-bg {
  position: relative;
  background-color: var(--navy); /* Fallback color */
  color: var(--white);
  overflow: hidden;
}

.hero-with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--royal-blue) 100%);
  background-size: cover;
  background-position: center;
  opacity: 0.25; /* Adjust opacity to ensure text readability */
  z-index: 1;
}

.hero-with-bg .container {
  position: relative;
  z-index: 2;
}

.hero-with-bg .hero-content {
  position: relative;
  z-index: 2;
}

/* Ensure text is readable against the background */
.hero-with-bg h1,
.hero-with-bg p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navy-bg {
  background-color: var(--navy);
}

.blue-bg {
  background-color: var(--royal-blue);
}

.light-bg {
  background-color: var(--light-gray);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px; /* Reduced from 1000px */
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 1.8rem; /* Reduced from 2rem */
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
  line-height: 1.15; /* Reduced from 1.2 */
  position: relative;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.7rem; /* Reduced from 3rem */
  }
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -0.65rem; /* Reduced from -0.75rem */
  left: 0;
  width: 72px; /* Reduced from 80px */
  height: 3px;
  background-color: var(--white);
}

.hero-content.text-center h1::after {
  left: 50%;
  transform: translateX(-50%);
}

.hero p {
  font-size: 1.05rem; /* Reduced from 1.125rem */
  margin-bottom: 2.25rem; /* Reduced from 2.5rem */
  opacity: 0.9;
  line-height: 1.5; /* Reduced from 1.6 */
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.15rem; /* Reduced from 1.25rem */
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.9rem; /* Reduced from 1rem */
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  margin-top: 2.7rem; /* Reduced from 3rem */
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-image {
    margin-top: 0;
  }
}

.corner-cluster {
  position: absolute;
  top: 0;
  right: 0;
  width: 270px;
  height: 270px;
  color: var(--white);
  opacity: 0.07;
  z-index: 1;
  background-image: url("../img/corner-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.corner-cluster-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 180px;
  color: var(--white);
  opacity: 0.07;
  z-index: 1;
  background-image: url("../img/corner-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.light-bg .corner-cluster,
.light-bg .corner-cluster-bottom-left {
  color: var(--navy);
  opacity: 0.05;
}

@media (min-width: 768px) {
  .hero-content {
    display: flex;
    align-items: center;
    gap: 2.7rem; /* Reduced from 3rem */
  }

  .hero-content.text-center {
    display: block;
    text-align: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }
}

/* Profile Image */
.profile-image {
  width: 180px; /* Reduced from 200px */
  height: 180px; /* Reduced from 200px */
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .profile-image {
    width: 200px; /* Reduced from 220px */
    height: 200px; /* Reduced from 220px */
  }
}

.profile-image:hover {
  transform: scale(1.05);
}

.profile-image.large {
  width: 220px; /* Reduced from 240px */
  height: 220px; /* Reduced from 240px */
}

@media (min-width: 768px) {
  .profile-image.large {
    width: 250px; /* Reduced from 280px */
    height: 250px; /* Reduced from 280px */
  }
}

.profile-image.small {
  width: 90px; /* Reduced from 100px */
  height: 90px; /* Reduced from 100px */
}

@media (min-width: 768px) {
  .profile-image.small {
    width: 110px; /* Reduced from 120px */
    height: 110px; /* Reduced from 120px */
  }
}

.profile-image-small {
  width: 90px; /* Reduced from 100px */
  height: 90px; /* Reduced from 100px */
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--royal-blue);
  box-shadow: 0 6px 15px rgba(48, 94, 243, 0.2);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .profile-image-small {
    width: 110px; /* Reduced from 120px */
    height: 110px; /* Reduced from 120px */
  }
}

.profile-image-small:hover {
  transform: scale(1.05);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem; /* Reduced from 1.5rem */
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem; /* Reduced from 2rem */
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .card-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 1.35rem; /* Reduced from 1.5rem */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card {
    padding: 1.8rem; /* Reduced from 2rem */
  }
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--royal-blue);
  transition: height 0.3s ease;
}

.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54px; /* Reduced from 60px */
  height: 54px; /* Reduced from 60px */
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  color: var(--royal-blue);
  transition: opacity 0.3s ease;
}

.card:hover {
  box-shadow: var(--box-shadow-lg);
  transform: translateY(-5px);
}

.card:hover::before {
  height: 100%;
}

.card:hover::after {
  opacity: 0.1;
}

.card-icon {
  color: var(--royal-blue);
  font-size: 1.8rem;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-icon .icon {
  width: var(--icon-size-lg);
  height: var(--icon-size-lg);
}

@media (min-width: 768px) {
  .card-icon {
    font-size: 2.25rem;
    margin-bottom: 1.35rem;
  }

  .card-icon .icon {
    width: 36px;
    height: 36px;
  }
}

.card h3 {
  margin-bottom: 0.65rem; /* Reduced from 0.75rem */
  font-size: 1.15rem; /* Reduced from 1.25rem */
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .card h3 {
    margin-bottom: 0.9rem; /* Reduced from 1rem */
    font-size: 1.25rem; /* Reduced from 1.375rem */
  }
}

.card p {
  font-size: 0.85rem; /* Reduced from 0.9rem */
  line-height: 1.5; /* Reduced from 1.6 */
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .card p {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

/* Icon Standardization */
.icon {
  width: var(--icon-size);
  height: var(--icon-size);
  stroke: var(--royal-blue);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .icon {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }
}

.icon-sm {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  stroke: var(--royal-blue);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 768px) {
  .icon-sm {
    width: 16px;
    height: 16px;
  }
}

.icon-lg {
  width: var(--icon-size-lg);
  height: var(--icon-size-lg);
  stroke: var(--royal-blue);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Success Stories */
.success-stories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem; /* Reduced from 1.5rem */
  margin-bottom: 2.25rem; /* Reduced from 2.5rem */
}

@media (min-width: 768px) {
  .success-stories {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 1.35rem; /* Reduced from 1.5rem */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--royal-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.story-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px; /* Reduced from 40px */
  height: 36px; /* Reduced from 40px */
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  color: var(--royal-blue);
  transition: opacity 0.3s ease;
}

.story-card:hover {
  box-shadow: var(--box-shadow-md);
  transform: translateY(-5px);
}

.story-card:hover::before {
  transform: scaleX(1);
}

.story-card:hover::after {
  opacity: 0.1;
}

.story-card p {
  font-size: 0.85rem; /* Reduced from 0.9rem */
  line-height: 1.5; /* Reduced from 1.6 */
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .story-card p {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

/* Practice Cards */
.practice-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem; /* Reduced from 2rem */
  max-width: 850px; /* Reduced from 900px */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .practice-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.7rem; /* Reduced from 3rem */
  }
}

.practice-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-md);
  transition: var(--transition);
}

.practice-card:hover {
  transform: translateY(-7px); /* Reduced from -8px */
  box-shadow: var(--box-shadow-xl);
}

.navy-border {
  border: 2px solid var(--navy);
}

.blue-border {
  border: 2px solid var(--royal-blue);
}

.practice-card-header {
  padding: 1.6rem; /* Reduced from 1.75rem */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .practice-card-header {
    padding: 1.8rem; /* Reduced from 2rem */
  }
}

.practice-card-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 135px; /* Reduced from 150px */
  height: 135px; /* Reduced from 150px */
  background-image: url("../img/corner-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.navy-bg {
  background-color: var(--navy);
}

.blue-bg {
  background-color: var(--royal-blue);
}

.practice-card-header h2 {
  color: var(--white);
  margin-bottom: 0.65rem; /* Reduced from 0.75rem */
  font-size: 1.35rem; /* Reduced from 1.5rem */
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .practice-card-header h2 {
    font-size: 1.6rem; /* Reduced from 1.75rem */
  }
}

.practice-card-body {
  padding: 1.6rem; /* Reduced from 1.75rem */
}

@media (min-width: 768px) {
  .practice-card-body {
    padding: 1.8rem; /* Reduced from 2rem */
  }
}

.bullet-list {
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
}

@media (min-width: 768px) {
  .bullet-list {
    margin-bottom: 1.8rem; /* Reduced from 2rem */
  }
}

.bullet-list li {
  position: relative;
  padding-left: 1.8rem; /* Reduced from 2rem */
  margin-bottom: 0.65rem; /* Reduced from 0.75rem */
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .bullet-list li {
    margin-bottom: 0.9rem; /* Reduced from 1rem */
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background-image: url("../img/bullet-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  color: var(--royal-blue);
}

.large-bullet-list {
  max-width: 650px; /* Reduced from 700px */
  margin: 0 auto;
}

.large-bullet-list li {
  position: relative;
  padding-left: 2rem; /* Reduced from 2.25rem */
  margin-bottom: 0.9rem; /* Reduced from 1rem */
  font-size: 1.05rem; /* Reduced from 1.125rem */
}

@media (min-width: 768px) {
  .large-bullet-list li {
    padding-left: 2.25rem; /* Reduced from 2.5rem */
    margin-bottom: 1.15rem; /* Reduced from 1.25rem */
    font-size: 1.15rem; /* Reduced from 1.25rem */
  }
}

.large-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  color: var(--royal-blue);
}

/* Framework Cards */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem; /* Reduced from 1.5rem */
  max-width: 850px; /* Reduced from 900px */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem; /* Reduced from 2rem */
  }
}

.framework-card {
  background-color: var(--white);
  border: 2px solid var(--royal-blue);
  border-radius: var(--border-radius);
  padding: 1.6rem; /* Reduced from 1.75rem */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .framework-card {
    padding: 1.8rem; /* Reduced from 2rem */
  }
}

.framework-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 72px; /* Reduced from 80px */
  height: 72px; /* Reduced from 80px */
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 1;
  color: var(--royal-blue);
}

.framework-card:hover {
  box-shadow: var(--box-shadow-lg);
  transform: translateY(-5px);
}

.framework-card h3 {
  margin-bottom: 0.65rem; /* Reduced from 0.75rem */
  font-size: 1.15rem; /* Reduced from 1.25rem */
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .framework-card h3 {
    margin-bottom: 0.9rem; /* Reduced from 1rem */
    font-size: 1.25rem; /* Reduced from 1.375rem */
  }
}

.framework-card p {
  font-size: 0.85rem; /* Reduced from 0.9rem */
  line-height: 1.5; /* Reduced from 1.6 */
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .framework-card p {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

/* Case Studies */
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem; /* Reduced from 1.5rem */
  max-width: 850px; /* Reduced from 900px */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .case-study-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem; /* Reduced from 2rem */
  }
}

.case-study-card {
  background-color: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 1.6rem; /* Reduced from 1.75rem */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .case-study-card {
    padding: 1.8rem; /* Reduced from 2rem */
  }
}

.case-study-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54px; /* Reduced from 60px */
  height: 54px; /* Reduced from 60px */
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  color: var(--royal-blue);
  transition: opacity 0.3s ease;
}

.case-study-card:hover {
  box-shadow: var(--box-shadow-lg);
  transform: translateY(-5px);
}

.case-study-card:hover::after {
  opacity: 0.1;
}

.case-study-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem; /* Reduced from 0.25rem 0.75rem */
  border-radius: 1rem;
  color: var(--white);
  font-size: 0.7rem; /* Reduced from 0.75rem */
  font-weight: 600;
  margin-bottom: 0.9rem; /* Reduced from 1rem */
}

.case-study-card h3 {
  margin-bottom: 0.9rem; /* Reduced from 1rem */
  font-size: 1.15rem; /* Reduced from 1.25rem */
}

@media (min-width: 768px) {
  .case-study-card h3 {
    margin-bottom: 1.15rem; /* Reduced from 1.25rem */
    font-size: 1.35rem; /* Reduced from 1.5rem */
  }
}

.case-study-details p {
  margin-bottom: 0.65rem; /* Reduced from 0.75rem */
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .case-study-details p {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.case-study-details strong {
  color: var(--navy);
}

/* Content Container */
.content-container {
  max-width: 750px; /* Reduced from 800px */
  margin: 0 auto;
}

.text-content {
  margin-bottom: 1.8rem; /* Reduced from 2rem */
}

@media (min-width: 768px) {
  .text-content {
    margin-bottom: 2.25rem; /* Reduced from 2.5rem */
  }
}

.text-content p {
  margin-bottom: 0.9rem; /* Reduced from 1rem */
  line-height: 1.6; /* Reduced from 1.7 */
  font-size: 0.9rem; /* Reduced from 0.95rem */
}

@media (min-width: 768px) {
  .text-content p {
    margin-bottom: 1.15rem; /* Reduced from 1.25rem */
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

/* Tabs */
.tabs {
  margin-bottom: 2.25rem; /* Reduced from 2.5rem */
}

@media (min-width: 768px) {
  .tabs {
    margin-bottom: 2.7rem; /* Reduced from 3rem */
  }
}

.tabs-list {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.8rem; /* Reduced from 2rem */
}

@media (min-width: 768px) {
  .tabs-list {
    margin-bottom: 2.25rem; /* Reduced from 2.5rem */
  }
}

.tab-trigger {
  padding: 0.65rem 0.9rem; /* Reduced from 0.75rem 1rem */
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .tab-trigger {
    padding: 0.65rem 1.35rem; /* Reduced from 0.75rem 1.5rem */
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.tab-trigger.active {
  color: var(--royal-blue);
  border-bottom-color: var(--royal-blue);
}

.tab-trigger:hover {
  color: var(--royal-blue);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(9px); /* Reduced from 10px */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content.active {
  display: block;
}

/* Form */
.form-container {
  max-width: 550px; /* Reduced from 600px */
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
}

@media (min-width: 768px) {
  .form-group {
    margin-bottom: 1.6rem; /* Reduced from 1.75rem */
  }
}

.form-label {
  display: block;
  margin-bottom: 0.45rem; /* Reduced from 0.5rem */
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .form-label {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.65rem; /* Reduced from 0.75rem */
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 0.85rem; /* Reduced from 0.9rem */
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .form-input,
  .form-textarea {
    padding: 0.8rem; /* Reduced from 0.875rem */
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(48, 94, 243, 0.2);
}

.form-textarea {
  min-height: 110px; /* Reduced from 120px */
  resize: vertical;
}

@media (min-width: 768px) {
  .form-textarea {
    min-height: 135px; /* Reduced from 150px */
  }
}

/* Form status messages */
.form-status {
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
}

.form-status.error {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.form-status.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Honeypot field - visually hidden but accessible to screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 1.8rem 1.35rem; /* Reduced from 2rem 1.5rem */
}

@media (min-width: 768px) {
  .success-message {
    padding: 2.7rem 1.8rem; /* Reduced from 3rem 2rem */
  }
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px; /* Reduced from 50px */
  height: 45px; /* Reduced from 50px */
  background-color: var(--royal-blue);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.35rem; /* Reduced from 1.5rem */
  margin-bottom: 1.15rem; /* Reduced from 1.25rem */
}

@media (min-width: 768px) {
  .success-icon {
    width: 54px; /* Reduced from 60px */
    height: 54px; /* Reduced from 60px */
    font-size: 1.8rem; /* Reduced from 2rem */
    margin-bottom: 1.35rem; /* Reduced from 1.5rem */
  }
}

.success-message h3 {
  font-size: 1.35rem; /* Reduced from 1.5rem */
  margin-bottom: 0.65rem; /* Reduced from 0.75rem */
}

@media (min-width: 768px) {
  .success-message h3 {
    font-size: 1.6rem; /* Reduced from 1.75rem */
    margin-bottom: 0.9rem; /* Reduced from 1rem */
  }
}

.success-message p {
  color: var(--gray-600);
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
  font-size: 0.9rem; /* Reduced from 0.95rem */
}

@media (min-width: 768px) {
  .success-message p {
    margin-bottom: 1.8rem; /* Reduced from 2rem */
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

/* Contact Info */
.contact-info {
  margin-top: 1.35rem; /* Reduced from 1.5rem */
}

@media (min-width: 768px) {
  .contact-info {
    margin-top: 1.8rem; /* Reduced from 2rem */
  }
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem; /* Reduced from 0.75rem */
  margin-bottom: 1.35rem; /* Reduced from 1.5rem */
}

@media (min-width: 768px) {
  .contact-item {
    gap: 0.9rem; /* Reduced from 1rem */
    margin-bottom: 1.8rem; /* Reduced from 2rem */
  }
}

.contact-item-icon {
  color: var(--royal-blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon .icon {
  width: var(--icon-size);
  height: var(--icon-size);
}

.contact-item-content h4 {
  margin-bottom: 0.2rem; /* Reduced from 0.25rem */
  color: var(--gray-800);
  font-size: 0.95rem; /* Reduced from 1rem */
}

@media (min-width: 768px) {
  .contact-item-content h4 {
    margin-bottom: 0.45rem; /* Reduced from 0.5rem */
  }
}

.contact-item-content a {
  color: var(--royal-blue);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .contact-item-content a {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.contact-item-content a:hover {
  color: var(--navy);
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 3.6rem 0 1.8rem; /* Reduced from 4rem 0 2rem */
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 4.5rem 0 1.8rem; /* Reduced from 5rem 0 2rem */
  }
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 270px; /* Reduced from 300px */
  height: 270px; /* Reduced from 300px */
  background-image: url("../img/corner-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.05;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem; /* Reduced from 2.5rem */
  margin-bottom: 2.7rem; /* Reduced from 3rem */
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.7rem; /* Reduced from 3rem */
    margin-bottom: 3.6rem; /* Reduced from 4rem */
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h3 {
  color: var(--white);
  margin-bottom: 1.15rem; /* Reduced from 1.25rem */
  font-size: 1.15rem; /* Reduced from 1.25rem */
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .footer h3 {
    margin-bottom: 1.35rem; /* Reduced from 1.5rem */
    font-size: 1.35rem; /* Reduced from 1.5rem */
  }
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -0.45rem; /* Reduced from -0.5rem */
  left: 0;
  width: 36px; /* Reduced from 40px */
  height: 2px;
  background-color: var(--royal-blue);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 0.9rem; /* Reduced from 1rem */
  font-size: 0.95rem; /* Reduced from 1rem */
  position: relative;
  display: inline-block;
}

@media (min-width: 768px) {
  .footer h4 {
    margin-bottom: 1.15rem; /* Reduced from 1.25rem */
    font-size: 1.05rem; /* Reduced from 1.125rem */
  }
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: -0.45rem; /* Reduced from -0.5rem */
  left: 0;
  width: 27px; /* Reduced from 30px */
  height: 2px;
  background-color: var(--royal-blue);
}

.footer p {
  color: var(--gray-300);
  margin-bottom: 0.9rem; /* Reduced from 1rem */
  line-height: 1.5; /* Reduced from 1.6 */
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .footer p {
    margin-bottom: 1.15rem; /* Reduced from 1.25rem */
    font-size: 0.95rem; /* Reduced from 1rem */
}

.footer ul li {
  margin-bottom: 0.45rem; /* Reduced from 0.5rem */
}

@media (min-width: 768px) {
  .footer ul li {
    margin-bottom: 0.65rem; /* Reduced from 0.75rem */
  }
}

.footer ul li a {
  color: var(--gray-300);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0.9rem; /* Reduced from 1rem */
  font-size: 0.85rem; /* Reduced from 0.9rem */
}

@media (min-width: 768px) {
  .footer ul li a {
    font-size: 0.95rem; /* Reduced from 1rem */
  }
}

.footer ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 11px
  height: 11px;
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  color: var(--royal-blue);
}

.footer ul li a:hover {
  color: var(--white);
}

.footer ul li a:hover::before {
  opacity: 1;
}

.footer-bottom {
  padding-top: 1.8rem; /* Reduced from 2rem */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--gray-400);
  font-size: 0.8rem; /* Reduced from 0.875rem */
  position: relative;
  z-index: 2;
}

.footer-links {
  margin-top: 0.9rem; /* Reduced from 1rem */
}

.footer-links a {
  margin: 0 0.65rem; /* Reduced from 0.75rem */
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

@media (min-width: 1024px) {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links {
    margin-top: 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px); /* Reduced from 20px */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.5s ease forwards;
}

/* Mini Cluster Decoration */
.mini-cluster-decoration {
  position: absolute;
  width: 36px; /* Reduced from 40px */
  height: 36px; /* Reduced from 40px */
  opacity: 0.1;
  color: var(--royal-blue);
  z-index: 1;
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.section-title-wrapper {
  position: relative;
  display: inline-block;
}

.section-title-wrapper .mini-cluster-decoration {
  top: -18px; /* Reduced from -20px */
  right: -27px; /* Reduced from -30px */
}

/* Utilities */
.text-content {
  max-width: 750px; /* Reduced from 800px */
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 0.9rem; /* Reduced from 1rem */
}

.mt-8 {
  margin-top: 1.8rem; /* Reduced from 2rem */
}

/* Icon Standardization */
.icon {
  width: var(--icon-size);
  height: var(--icon-size);
  stroke: var(--royal-blue);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .icon {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }
}

.icon-sm {
  width: var(--icon-size-sm);
  height: var(--icon-size-sm);
  stroke: var(--royal-blue);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 768px) {
  .icon-sm {
    width: 16px;
    height: 16px;
  }
}

.icon-lg {
  width: var(--icon-size-lg);
  height: var(--icon-size-lg);
  stroke: var(--royal-blue);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon {
  color: var(--royal-blue);
  font-size: 1.8rem;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-icon .icon {
  width: var(--icon-size-lg);
  height: var(--icon-size-lg);
}

@media (min-width: 768px) {
  .card-icon {
    font-size: 2.25rem;
    margin-bottom: 1.35rem;
  }

  .card-icon .icon {
    width: 36px;
    height: 36px;
  }
}

/* Footer icons */
.footer-col .icon,
.contact-item-icon .icon {
  stroke: var(--royal-blue);
}

.footer ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 11px;
  height: 11px;
  background-image: url("../img/mini-cluster.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  color: var(--royal-blue);
}

/* Contact icons */
.contact-item-icon {
  color: var(--royal-blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon .icon {
  width: var(--icon-size);
  height: var(--icon-size);
}

/* Button icons */
.btn .icon,
.btn .icon-sm {
  margin-left: 0.3rem;
  transition: transform 0.3s ease;
}

.btn:hover .icon,
.btn:hover .icon-sm {
  transform: translateX(4px);
}

/* Ensure all SVG icons follow the same style */
svg.icon {
  stroke: var(--royal-blue);
  stroke-width: var(--icon-stroke-width);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* White icons for dark backgrounds */
.navy-bg .icon,
.blue-bg .icon,
.footer .icon {
  stroke: var(--white);
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-royal-blue {
  background-color: var(--royal-blue);
}

.text-white {
  color: var(--white);
}

.font-bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
}

.max-width-4xl {
  max-width: 56rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.relative {
  position: relative;
}

.object-cover {
  object-fit: cover;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.p-6 {
  padding: 1.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.inline-block {
  display: inline-block;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.text-xs {
  font-size: 0.75rem;
}

.font-medium {
  font-weight: 500;
}

.rounded-full {
  border-radius: 9999px;
}

.text-gray-500 {
  color: var(--gray-500);
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-sm {
  font-size: 0.875rem;
}

.hover\:underline:hover {
  text-decoration: underline;
}

.text-royal-blue {
  color: var(--royal-blue);
}

.bg-gray-200 {
  background-color: var(--gray-200);
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

