/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary-yellow: #ffcb05;
  --primary-blue: #004080;
  --secondary-blue: #003366;
  --accent-blue: #003A70;
  
  /* Neutral Colors */
  --bg-color: #f0f0f0;
  --card-bg: #ffffff;
  --text-main: #222222;
  --text-light: #555555;
  --border-color: #e0e0e0;

  /* Spacing & Layout */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --container-width: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  
  /* Typography */
  --font-family: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-blue);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
p { margin-bottom: 1rem; color: var(--text-light); }

/* Components: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary-yellow);
  color: var(--primary-blue);
}

.btn-primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Components: Cards */
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  padding: 40px;
  width: 100%;
  max-width: 680px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.5);
}

/* Header */
.site-header {
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Specific Section Styles */
.hero-banner {
  background: linear-gradient(135deg, #eef0eb 0%, #ffffff 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

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

.hero-banner p {
  font-size: 1.25rem;
  color: var(--text-light);
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #eee;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-family: var(--font-family);
  transition: border-color 0.3s;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: var(--primary-blue);
  color: #ffffff;
  padding: 40px 0;
  margin-top: auto;
}

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

.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-yellow);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2.2rem;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
