/* Font Definitions */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/geist-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/geist-mono-regular.woff2') format('woff2');
}
.geist-font {
  font-family: 'Geist', Arial, sans-serif;
}
.geist-mono-font {
  font-family: 'Geist Mono', 'Courier New', monospace;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
html {
  font-family: 'Geist', Arial, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #fff;
  color: #000;
}

/* Colors */
:root {
  --color-gray-50: #f8f9fa;
  --color-gray-100: #e9ecef;
  --color-gray-200: #dee2e6;
  --color-gray-300: #ced4da;
  --color-gray-500: #6c757d;
  --color-gray-700: #343a40;
  --color-blue-50: #e7f5ff;
  --color-blue-100: #d0ebff;
  --color-blue-700: #1c7ed6;
  --color-blue-800: #1864ab;
  --color-blue-900: #0b4973;
  --color-red-50: #fff5f5;
  --color-red-100: #ffe3e3;
  --color-red-500: #fa5252;
  --color-red-600: #f03e3e;
  --color-yellow-400: #ffec99;
  --color-yellow-500: #fab005;
  --color-green-100: #e6fcf5;
  --color-green-500: #20c997;
  --color-white: #fff;
  --color-black: #000;
}

/* Spacing and Sizing */
:root {
  --spacing: 0.25rem;
  --container-sm: 24rem;
  --container-md: 28rem;
  --container-lg: 32rem;
  --container-2xl: 42rem;
}

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.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; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-2xl);
  margin: 0 auto;
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: calc(var(--spacing) * 1); }
.gap-2 { gap: calc(var(--spacing) * 2); }
.gap-4 { gap: calc(var(--spacing) * 4); }
.gap-6 { gap: calc(var(--spacing) * 6); }

/* Spacing Utilities */
.p-1 { padding: calc(var(--spacing) * 1); }
.p-2 { padding: calc(var(--spacing) * 2); }
.p-4 { padding: calc(var(--spacing) * 4); }
.px-2 { padding-left: calc(var(--spacing) * 2); padding-right: calc(var(--spacing) * 2); }
.px-4 { padding-left: calc(var(--spacing) * 4); padding-right: calc(var(--spacing) * 4); }
.py-2 { padding-top: calc(var(--spacing) * 2); padding-bottom: calc(var(--spacing) * 2); }
.py-4 { padding-top: calc(var(--spacing) * 4); padding-bottom: calc(var(--spacing) * 4); }
.m-1 { margin: calc(var(--spacing) * 1); }
.m-2 { margin: calc(var(--spacing) * 2); }
.mt-2 { margin-top: calc(var(--spacing) * 2); }
.mt-4 { margin-top: calc(var(--spacing) * 4); }
.mb-2 { margin-bottom: calc(var(--spacing) * 2); }
.mb-4 { margin-bottom: calc(var(--spacing) * 4); }

/* Borders and Backgrounds */
.border { border: 1px solid var(--color-gray-300); }
.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-blue-50 { background-color: var(--color-blue-50); }
.bg-red-50 { background-color: var(--color-red-50); }

/* Colors */
.text-gray-500 { color: var(--color-gray-500); }
.text-gray-700 { color: var(--color-gray-700); }
.text-blue-700 { color: var(--color-blue-700); }
.text-red-500 { color: var(--color-red-500); }
.text-yellow-500 { color: var(--color-yellow-500); }

/* Interactivity */
.cursor-pointer { cursor: pointer; }
.transition { transition: all 0.2s ease; }
.hover\:bg-blue-100:hover { background-color: var(--color-blue-100); }
.focus\:outline-none:focus { outline: none; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
}
/* Custom CSS for any additional styling */
.gradient-primary {
    background: linear-gradient(to right, #1e3a8a, #1e40af);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.shadow-xs {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9fafb;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Header Styles */
header {
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid #e5e7eb;
position: sticky;
top: 0;
z-index: 50;
padding: 0 20px;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.logo-icon {
background: linear-gradient(to right, #1e40af, #1e3a8a);
padding: 8px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.logo-text {
font-size: 1.25rem;
font-weight: bold;
color: #1e3a8a;
}

nav {
display: flex;
gap: 32px;
}

nav a {
color: #6b7280;
text-decoration: none;
transition: color 0.3s;
}

nav a:hover {
color: #1e3a8a;
}



/* Hero Section */
.hero {
background: linear-gradient(135deg, #1e3a8a, #1e40af, #1e3a8a);
color: white;
padding: 80px 0;
position: relative;
text-align: center;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.hero h1 {
font-size: 3rem;
margin-bottom: 24px;
line-height: 1.2;
}

.hero-accent {
color: #bfdbfe;
}

.hero p {
font-size: 1.25rem;
color: #dbeafe;
line-height: 1.6;
}

.hero-gradient {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 80px;
background: linear-gradient(to top, #f9fafb, transparent);
}

/* Stats Section */
.stats {
padding: 64px 0;
margin-top: -40px;
position: relative;
z-index: 10;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

@media (min-width: 768px) {
.stats-grid {
grid-template-columns: repeat(4, 1fr);
}
}

.stat-card {
background-color: white;
border-radius: 16px;
padding: 32px;
text-align: center;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}

.stat-card:hover {
transform: scale(1.05);
}

.stat-icon {
width: 48px;
height: 48px;
color: #1e3a8a;
margin: 0 auto 16px;
}

.stat-number {
font-size: 1.875rem;
font-weight: bold;
color: #111827;
margin-bottom: 8px;
}

.stat-label {
color: #6b7280;
font-weight: 500;
}

/* Story Section */
.story {
padding: 80px 0;
}

.story-content {
display: grid;
gap: 48px;
align-items: center;
}

@media (min-width: 768px) {
.story-content {
grid-template-columns: 1fr 1fr;
}
}

.story-text h2 {
font-size: 2.25rem;
font-weight: bold;
color: #111827;
margin-bottom: 24px;
}

.story-text p {
color: #374151;
margin-bottom: 16px;
line-height: 1.7;
}

.story-visual {
position: relative;
}

.story-card-bg {
background: linear-gradient(135deg, #1e3a8a, #1e40af);
border-radius: 24px;
padding: 32px;
transform: rotate(3deg);
}

.story-card {
background-color: white;
border-radius: 16px;
padding: 32px;
transform: rotate(-6deg);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.story-card-icon {
width: 80px;
height: 80px;
color: #1e3a8a;
margin-bottom: 16px;
}

.story-card h3 {
font-size: 1.5rem;
font-weight: bold;
color: #111827;
margin-bottom: 8px;
}

.story-card p {
color: #6b7280;
}

/* Values Section */
.values {
padding: 80px 0;
background-color: white;
}

.values-header {
max-width: 800px;
margin: 0 auto 64px;
text-align: center;
}

.values-header h2 {
font-size: 2.25rem;
font-weight: bold;
color: #111827;
margin-bottom: 24px;
}

.values-header p {
font-size: 1.25rem;
color: #6b7280;
line-height: 1.6;
}

.values-grid {
display: grid;
gap: 32px;
}

@media (min-width: 768px) {
.values-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1024px) {
.values-grid {
grid-template-columns: repeat(4, 1fr);
}
}

.value-card {
background: linear-gradient(135deg, #f9fafb, #f3f4f6);
border-radius: 16px;
padding: 32px;
height: 100%;
transition: all 0.3s;
}

.value-card:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
transform: scale(1.05);
}

.value-icon {
background-color: #dbeafe;
border-radius: 50%;
width: 64px;
height: 64px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
transition: background-color 0.3s;
}

.value-card:hover .value-icon {
background-color: #bfdbfe;
}

.value-icon svg {
width: 32px;
height: 32px;
color: #1e3a8a;
}

.value-card h3 {
font-size: 1.25rem;
font-weight: bold;
color: #111827;
margin-bottom: 16px;
}

.value-card p {
color: #6b7280;
line-height: 1.6;
}

/* Footer */
footer {
background-color: #1e3a8a;
color: white;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 32px 20px;
}

.footer-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}

.footer-logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.footer-logo-icon {
background: linear-gradient(135deg, #1e40af, #1e3a8a);
padding: 8px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.footer-logo-text {
font-size: 1.25rem;
font-weight: bold;
color: white;
}

.footer-links {
display: flex;
gap: 24px;
}

.footer-links a {
color: white;
text-decoration: none;
}

.footer-divider {
border: 0;
border-top: 1px solid #e5e7eb;
margin: 24px 0;
}

.footer-bottom {
text-align: center;
color: white;
}

.footer-bottom a {
color: white;
text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
.header-content {
flex-direction: column;
height: auto;
padding: 16px 0;
}

nav {
margin: 16px 0;
}

.hero h1 {
font-size: 2.25rem;
}

.hero p {
font-size: 1.125rem;
}

.footer-top {
flex-direction: column;
gap: 16px;
}

.footer-links {
justify-content: center;
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.6;
color: #333;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

/* Header Styles */
header {
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid #e2e8f0;
position: sticky;
top: 0;
z-index: 50;
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
height: 4rem;
}

.logo {
display: flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
}

.logo-icon {
background: linear-gradient(to right, #1e3a8a, #1e40af);
padding: 0.5rem;
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
}

.logo-text {
font-size: 1.25rem;
font-weight: bold;
color: #1e3a8a;
}

nav {
display: flex;
align-items: center;
gap: 2rem;
}

nav a {
color: #64748b;
text-decoration: none;
transition: color 0.3s;
}

nav a:hover {
color: #1e3a8a;
}

/* Hero Section */
.hero {
padding: 5rem 0;
background: linear-gradient(to right, #1e3a8a, #3b82f6, #eab308);
color: white;
text-align: center;
}

.hero h1 {
font-size: 3rem;
font-weight: bold;
margin-bottom: 1.5rem;
}

.hero p {
font-size: 1.25rem;
max-width: 48rem;
margin: 0 auto 2rem;
opacity: 0.9;
}

.hero-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background-color: rgba(255, 255, 255, 0.9);
color: #1e3a8a;
border: none;
border-radius: 0.375rem;
padding: 0.5rem 1.5rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s;
text-decoration: none;
}

.hero-btn:hover {
background-color: white;
}

/* Contact Info Section */
.contact-info {
padding: 4rem 0;
background-color: #f8fafc;
}

.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.contact-card {
background-color: white;
border-radius: 0.75rem;
border: 1px solid #e2e8f0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
text-align: center;
transition: box-shadow 0.3s;
}

.contact-card:hover {
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-content {
padding: 1.5rem;
}

.card-icon {
background-color: #1e3a8a;
border-radius: 50%;
width: 3rem;
height: 3rem;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1rem;
}

.card-icon svg {
width: 1.5rem;
height: 1.5rem;
color: white;
}

.card-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.75rem;
}

.card-details {
margin-bottom: 0.75rem;
}

.card-details p {
color: #1e3a8a;
font-weight: 500;
}

.card-description {
font-size: 0.875rem;
color: #64748b;
}

/* Contact Form Section */
.contact-form-section {
padding: 4rem 0;
}

.contact-content {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}

@media (min-width: 1024px) {
.contact-content {
grid-template-columns: 1fr 1fr;
}
}

.form-card {
background-color: white;
border-radius: 0.75rem;
border: 1px solid #e2e8f0;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-header {
padding: 1.5rem 1.5rem 0;
}

.form-title {
font-size: 1.875rem;
font-weight: bold;
color: #1e3a8a;
margin-bottom: 0.5rem;
}

.form-content {
padding: 1.5rem;
}

.form-group {
margin-bottom: 1.5rem;
}

label {
display: block;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 0.5rem;
}

input, textarea {
width: 100%;
padding: 0.5rem 0.75rem;
border: 1px solid #d1d5db;
border-radius: 0.375rem;
font-size: 0.875rem;
}

textarea {
min-height: 120px;
resize: vertical;
}

.submit-btn {
width: 100%;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background-color: #1e3a8a;
color: white;
border: none;
border-radius: 0.375rem;
padding: 0.5rem 1.5rem;
font-size: 0.875rem;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s;
}

.submit-btn:hover {
background-color: #1e40af;
}

.map-placeholder {
background: linear-gradient(to bottom right, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
height: 16rem;
border-radius: 0.75rem;
display: flex;
align-items: center;
justify-content: center;
}

.map-content {
text-align: center;
}

.map-icon {
width: 3rem;
height: 3rem;
color: #1e3a8a;
margin: 0 auto 0.5rem;
}

/* Footer Styles */
footer {
background-color: #1e3a8a;
color: white;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 32px 20px;
}

.footer-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}

.footer-logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.footer-logo-icon {
background: linear-gradient(135deg, #1e40af, #1e3a8a);
padding: 8px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.footer-logo-text {
font-size: 1.25rem;
font-weight: bold;
color: white;
}

.footer-links {
display: flex;
gap: 24px;
}

.footer-links a {
color: white;
text-decoration: none;
}

.footer-divider {
border: 0;
border-top: 1px solid #e5e7eb;
margin: 24px 0;
}

.footer-bottom {
text-align: center;
color: white;
}

.footer-bottom a {
color: white;
text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
position: fixed;
width: 60px;
height: 60px;
bottom: 40px;
right: 40px;
background-color: #25d366;
color: #FFF;
border-radius: 50px;
text-align: center;
font-size: 30px;
box-shadow: 2px 2px 3px #999;
z-index: 100;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}
70% {
box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}
}

.whatsapp-float:hover {
background-color: #128C7E;
transform: scale(1.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
display: none;
align-items: center;
justify-content: center;
width: 2.25rem;
height: 2.25rem;
border: none;
background: none;
cursor: pointer;
}

@media (max-width: 768px) {
nav, .header-buttons {
display: none;
}

.mobile-menu-btn {
display: flex;
}

.hero h1 {
font-size: 2.25rem;
}

.hero p {
font-size: 1.125rem;
}

.whatsapp-float {
width: 50px;
height: 50px;
bottom: 20px;
right: 20px;
}
}
/* Basic Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Typography */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f9fafb;
}

h1, h2, h3, h4 {
font-weight: 600;
margin-bottom: 1rem;
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

p {
margin-bottom: 1rem;
}

/* Layout */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

/* Header Styles */
header {
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid #e5e7eb;
position: sticky;
top: 0;
z-index: 50;
}

.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

@media (min-width: 1024px) {
.header-container {
padding: 0 5rem;
}
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
height: 4rem;
}

.logo-link {
display: flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
transition: opacity 0.2s;
}

.logo-link:hover {
opacity: 0.8;
}

.logo-icon {
background: linear-gradient(to right, #1d4ed8, #1e3a8a);
padding: 0.5rem;
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
}

.logo-text {
font-size: 1.25rem;
font-weight: bold;
color: #1e3a8a;
}

.nav-desktop {
display: none;
}

@media (min-width: 768px) {
.nav-desktop {
display: flex;
align-items: center;
gap: 2rem;
}
}

.nav-link {
color: #6b7280;
text-decoration: none;
transition: color 0.2s;
}

.nav-link:hover {
color: #1e3a8a;
}

.mobile-menu-btn {
display: flex;
align-items: center;
justify-content: center;
width: 2.25rem;
height: 2.25rem;
border-radius: 0.375rem;
border: none;
background: transparent;
cursor: pointer;
transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
background-color: #f3f4f6;
}

@media (min-width: 768px) {
.mobile-menu-btn {
display: none;
}
}

/* Hero Section */
.hero {
background: linear-gradient(to right, #1e3a8a, #1e40af);
color: white;
padding: 4rem 0;
text-align: center;
}

.hero h1 {
margin-bottom: 1rem;
}

.hero p {
font-size: 1.25rem;
color: #dbeafe;
}

/* Policy Cards */
.policy-section {
padding: 4rem 0;
}

.section-title {
text-align: center;
margin-bottom: 3rem;
}

.policy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.policy-card {
background: white;
border-radius: 0.75rem;
padding: 1.5rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
transition: box-shadow 0.3s;
}

.policy-card:hover {
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
display: flex;
align-items: center;
margin-bottom: 1rem;
}

.card-icon {
background-color: #dbeafe;
border-radius: 50%;
padding: 0.75rem;
margin-right: 1rem;
display: flex;
align-items: center;
justify-content: center;
}

.policy-list {
list-style: none;
}

.policy-list li {
display: flex;
align-items: flex-start;
margin-bottom: 0.5rem;
}

.bullet {
width: 0.5rem;
height: 0.5rem;
background-color: #1e3a8a;
border-radius: 50%;
margin-top: 0.5rem;
margin-right: 0.75rem;
flex-shrink: 0;
}

/* Cancellation Policy */
.cancellation-section {
padding: 4rem 0;
background: white;
}

.cancellation-item {
background-color: #f9fafb;
border-radius: 0.5rem;
padding: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1rem;
}

.cancellation-details {
flex: 1;
}

.cancellation-fee {
text-align: right;
font-weight: bold;
}

.free {
color: #059669;
}

.fee {
color: #1e3a8a;
}

/* Restrictions Section */
.restrictions-section {
padding: 4rem 0;
background-color: #fef2f2;
}

.restrictions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}

.restriction-item {
display: flex;
align-items: flex-start;
}

.warning-icon {
color: #dc2626;
margin-top: 0.25rem;
margin-right: 0.75rem;
flex-shrink: 0;
}

/* Footer */
footer {
background-color: #1e3a8a;
color: white;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 32px 20px;
}

.footer-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
}

.footer-logo {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}

.footer-logo-icon {
background: linear-gradient(135deg, #1e40af, #1e3a8a);
padding: 8px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}

.footer-logo-text {
font-size: 1.25rem;
font-weight: bold;
color: white;
}

.footer-links {
display: flex;
gap: 24px;
}

.footer-links a {
color: white;
text-decoration: none;
}

.footer-divider {
border: 0;
border-top: 1px solid #e5e7eb;
margin: 24px 0;
}

.footer-bottom {
text-align: center;
color: white;
}

.footer-bottom a {
color: white;
text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
.footer-top {
flex-direction: column;
gap: 1rem;
text-align: center;
}

.footer-links {
justify-content: center;
}
}
