/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #171717;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility classes */
.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: #ffffff;
}

.bg-\[\#043873\] {
  background-color: #043873;
}

.bg-\[\#1a1a2e\]\/70 {
  background-color: rgba(26, 26, 46, 0.7);
}

.bg-red-600 {
  background-color: #dc2626;
}

.bg-red-600:hover {
  background-color: #b91c1c;
}

.bg-red-700 {
  background-color: #b91c1c;
}

.bg-blue-300 {
  background-color: #93c5fd;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-100:hover {
  background-color: #e5e7eb;
}

.bg-\[\#2E4E73\] {
  background-color: #2E4E73;
}

/* Text colors */
.text-white {
  color: #ffffff;
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: #1f2937;
}

.text-black {
  color: #000000;
}

.text-\[\#043873\] {
  color: #043873;
}

.text-\[\#212529\] {
  color: #212529;
}

/* Layout utilities */
.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.top-\[200px\] {
  top: 200px;
}

.bottom-\[200px\] {
  bottom: 200px;
}

.bottom-20 {
  bottom: 5rem;
}

.bottom-8 {
  bottom: 2rem;
}

.left-8 {
  left: 2rem;
}

.right-8 {
  right: 2rem;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-10 {
  top: 2.5rem;
}

.top-24 {
  top: 6rem;
}

.top-32 {
  top: 8rem;
}

.top-40 {
  top: 10rem;
}

.top-90 {
  top: 22.5rem;
}

.left-70 {
  left: 17.5rem;
}

.left-80 {
  left: 20rem;
}

.right-30 {
  right: 7.5rem;
}

.right-35 {
  right: 8.75rem;
}

/* Z-index */
.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-50 {
  z-index: 50;
}

/* Spacing */
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.px-24 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-80 {
  padding-bottom: 20rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Flexbox */
.flex {
  display: flex;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

/* Grid */
.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lg\:grid-cols-2 {
  @media (min-width: 1024px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.lg\:grid-cols-4 {
  @media (min-width: 1024px) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.md\:grid-cols-2 {
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Gaps */
.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.lg\:gap-12 {
  @media (min-width: 1024px) {
    gap: 3rem;
  }
}

/* Space between */
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 2rem;
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1.5rem;
}

.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 2rem;
}

/* Display */
.hidden {
  display: none;
}

.md\:flex {
  @media (min-width: 768px) {
    display: flex;
  }
}

/* Dimensions */
.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-48 {
  width: 12rem;
}

.w-60 {
  width: 15rem;
}

.w-64 {
  width: 16rem;
}

.w-80 {
  width: 20rem;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-1 {
  height: 0.25rem;
}

.h-\[600px\] {
  height: 600px;
}

.h-\[800px\] {
  height: 800px;
}

.h-\[1100px\] {
  height: 1100px;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.min-h-\[90vh\] {
  min-height: 90vh;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-\[200px\] {
  max-width: 200px;
}

.max-w-\[630px\] {
  max-width: 630px;
}

/* Typography */
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.lg\:text-base {
  @media (min-width: 1024px) {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.lg\:text-xl {
  @media (min-width: 1024px) {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.lg\:text-3xl {
  @media (min-width: 1024px) {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.lg\:text-5xl {
  @media (min-width: 1024px) {
    font-size: 3rem;
    line-height: 1;
  }
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-\[30px\] {
  line-height: 30px;
}

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

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

.tracking-\[-0\.02em\] {
  letter-spacing: -0.02em;
}

/* Border */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-\[\#043873\] {
  border-color: #043873;
}

.h-\[0\.4px\] {
  height: 0.4px;
}

/* Shadow */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.object-right {
  object-position: right;
}

/* Opacity */
.opacity-20 {
  opacity: 0.2;
}

/* Transform */
.transform {
  transform: var(--tw-transform);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

/* Transitions */
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

/* Hover effects */
.hover\:text-gray-300:hover {
  color: #d1d5db;
}

.hover\:bg-red-700:hover {
  background-color: #b91c1c;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  .lg\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  
  .lg\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:gap-12 {
    gap: 3rem;
  }
  
  .lg\:w-\[700px\] {
    width: 700px;
  }
  
  .lg\:h-\[600px\] {
    height: 600px;
  }
  
  .lg\:h-\[800px\] {
    height: 800px;
  }
  
  .lg\:w-64 {
    width: 16rem;
  }
  
  .lg\:h-64 {
    height: 16rem;
  }
  
  .lg\:w-80 {
    width: 20rem;
  }
  
  .lg\:h-80 {
    height: 20rem;
  }
  
  .lg\:w-56 {
    width: 14rem;
  }
  
  .lg\:h-56 {
    height: 14rem;
  }
  
  .lg\:w-64 {
    width: 16rem;
  }
  
  .lg\:h-64 {
    height: 16rem;
  }
  
  .lg\:w-20 {
    width: 5rem;
  }
  
  .lg\:h-20 {
    height: 5rem;
  }
  
  .lg\:w-\[500px\] {
    width: 500px;
  }
  
  .lg\:h-\[500px\] {
    height: 500px;
  }
  
  .lg\:top-32 {
    top: 8rem;
  }
  
  .lg\:bottom-20 {
    bottom: 5rem;
  }
  
  .lg\:right-35 {
    right: 8.75rem;
  }
  
  .lg\:left-0 {
    left: 0;
  }
  
  .lg\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  
  .lg\:pt-32 {
    padding-top: 8rem;
  }
  
  .lg\:left-16 {
    left: 4rem;
  }
  
  .lg\:right-16 {
    right: 4rem;
  }
  
  .lg\:left-24 {
    left: 6rem;
  }
  
  .lg\:right-24 {
    right: 6rem;
  }
}

@media (min-width: 1280px) {
  .xl\:px-24 {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  
  .xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  .xl\:left-24 {
    left: 6rem;
  }
  
  .xl\:right-24 {
    right: 6rem;
  }
}

/* Custom positioning for overlapping images */
.right-30 {
  right: 7.5rem;
}

.left-70 {
  left: 17.5rem;
}

.left-80 {
  left: 20rem;
}

.right-35 {
  right: 8.75rem;
}

.top-90 {
  top: 22.5rem;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Button focus states */
button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* SVG styling */
svg {
  display: block;
  vertical-align: middle;
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
}
