/* Website Styles - Generated automatically */
/* Brand Strategy Applied: #1E3A8A */

/* CSS Custom Properties (Brand Colors from Brand Strategy) */
:root {
  --primary-color: #1E3A8A;
  --secondary-color: #2563EB;
  --accent-color: #10B981;
  --neutral-color: #374151;
  --background-color: #F9FAFB;
  --primary-font: Inter, sans-serif;
  --secondary-font: Roboto, sans-serif;
}

/* Global styles for the website */
body {
  margin: 0;
  font-family: var(--secondary-font);
  background: var(--background-color);
  color: var(--neutral-color);
  line-height: 1.6;
}

/* Critical: Global box-sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Prevent horizontal overflow */
html {
  overflow-x: hidden;
}

/* Common utility classes */
.text-balance {
  text-wrap: balance;
}

.break-words {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Section spacing */
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.max-w-7xl {
  max-width: 80rem;
}

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

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

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

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:text-left {
    text-align: left;
  }
  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .md\:max-w-3xl {
    max-width: 48rem;
  }
}

/* Flex utilities */
.flex {
  display: flex;
}

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

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

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

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.gap-8 {
  gap: 2rem;
}

.gap-4 {
  gap: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

/* Text utilities */
.text-center {
  text-align: center;
}

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

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

.mb-8 {
  margin-bottom: 2rem;
}

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

.mt-8 {
  margin-top: 2rem;
}

/* Button styles */
.inline-block {
  display: inline-block;
}

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

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

.rounded-md {
  border-radius: 0.375rem;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.transition {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Hero section styles */
.relative {
  position: relative;
}

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

.min-h-70vh {
  min-height: 70vh;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

/* Background utilities */
.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

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

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

.text-gray-600 {
  color: #4b5563;
}

.text-gray-900 {
  color: #111827;
}

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

/* Border utilities */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

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

/* Responsive utilities */
.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Hover effects */
.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:text-gray-900:hover {
  color: #111827;
}

/* Positioning */
.absolute {
  position: absolute;
}

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

/* Opacity */
.bg-black\/60 {
  background-color: rgba(0, 0, 0, 0.6);
}

/* Text shadow */
.text-shadow-custom {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Component-specific styles using brand colors */
.bg-white {
  background-color: var(--background-color);
}

.text-white {
  color: #ffffff;
}

/* Footer uses brand colors - let the footer component handle contrast */
footer {
  background-color: var(--secondary-color);
}

footer a:hover {
  color: var(--accent-color);
}
