@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: white;
  text-align: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px;
  background-color: #fff;
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  text-decoration: none;
  display: flex;
  align-items: first;
  gap: 10px;
}

.logo-icon {
  font-size: 2.5rem;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 80px;
  min-height: 800px;
  background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
  backdrop-filter: brightness(0.8);
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  border-radius: 10px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Footer Styles converted from React/Tailwind */
.footer {
  background-color: #111827;
  color: #ffffff;
  margin-top: auto;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.py-16 {
  padding: 4rem 0;
}

.grid {
  display: grid;
}

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

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

.gap-8 {
  gap: 2rem;
}

.lg\:col-span-1 {
  grid-column: span 1 / span 1;
}

.lg\:col-start-3 {
  grid-column-start: 3;
}

.flex {
  display: flex;
}

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

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

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

.fill-primary {
  fill: #00ae4d;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

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

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

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

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

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

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

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.h-5 {
  height: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.h-6 {
  height: 1.5rem;
}

.text-gray-400 {
  color: #9ca3af;
}

.hover\:text-white:hover {
  color: #ffffff;
}

.transition-colors {
  transition: color 0.15s ease-in-out;
}

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

.inline-flex {
  display: inline-flex;
}

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

.bg-primary {
  background-color: #00ae4d;
}

.hover\:bg-primary\/90:hover {
  background-color: rgba(0, 174, 77, 0.9);
}

.text-white {
  color: #ffffff;
}

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

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

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

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

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

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

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

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

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

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.md\:flex-row {
  flex-direction: row;
}

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

.gap-6 {
  gap: 1.5rem;
}

.current-year {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .lg\:col-start-3 {
    grid-column-start: auto;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
  
  .logo-icon {
    font-size: 2rem;
  }
  
  .md\:flex-row {
    flex-direction: column;
  }
  
  .gap-6 {
    gap: 1rem;
  }
}
