.site-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    margin: 0;
    color: #222;
    background: #f8fafc;
}

header {
    background: #0b5cff;
    color: #fff;
    padding: 18px 12px;
}

.container {
    max-width: 1100px;
    margin: 24px auto;
    padding: 0 16px;
}

nav a {
    color: #fff;
    margin-right: 12px;
    text-decoration: none;
    font-weight: 600;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    align-items: start;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(12,18,30,0.06);
    padding: 16px;
}

.card h3 { margin: 0 0 8px 0; font-size: 18px }
.card p { margin: 0; color: #444 }

.ad-slot {
    display: block;
    background: #eef2ff;
    border: 2px dashed #c7d3ff;
    color: #0b5cff;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    margin: 14px 0;
}

.hustle-header { display:flex; gap:16px; align-items:center }
.hustle-header h1 { margin: 0 }

.back-link { display:inline-block; margin-top:14px }
.back-link a { color: #0b5cff; text-decoration: none; font-weight: 600; transition: all 0.3s ease }
.back-link a:hover { color: #0047cc; text-decoration: underline }

footer { text-align:center; color:#6b7280; padding:28px 12px; background: #f0f4ff; margin-top: 40px }

/* About Page Styles */
.about-page h2 { font-size: 28px; margin-bottom: 24px; color: #0b5cff }

.hero-about {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 50%, #003399 100%);
  color: white;
  padding: 60px 0;
  border-radius: 16px;
  margin-bottom: 48px;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  margin: 0;
}

.fade-in-slide {
  animation: slideInDown 0.8s ease-out;
}

.fade-in-slide-delay {
  animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px) }
  to { opacity: 1; transform: translateY(0) }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px) }
  to { opacity: 1; transform: translateY(0) }
}

.mission-section {
  margin-bottom: 48px;
}

.mission-card {
  background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
  border-left: 6px solid #0b5cff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(11, 92, 255, 0.1);
  text-align: center;
}

.mission-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.mission-card h2 {
  color: #0b5cff;
  margin-top: 0;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.value-card {
  background: white;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 4px solid #ccc;
  position: relative;
}

.value-1 { border-top-color: #ff6b6b }
.value-2 { border-top-color: #4ecdc4 }
.value-3 { border-top-color: #ffd93d }
.value-4 { border-top-color: #a78bfa }

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.value-card h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  color: #222;
}

.value-card p {
  color: #666;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.why-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 48px;
}

.why-section h2 {
  text-align: center;
  color: #0b5cff;
  margin-bottom: 32px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(11,92,255,0.15);
}

.feature-number {
  font-size: 32px;
  font-weight: 700;
  color: #0b5cff;
  display: block;
  margin-bottom: 8px;
}

.feature-item h4 {
  margin: 0 0 8px 0;
  color: #222;
}

.feature-item p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.team-section {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 100%);
  color: white;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.team-section h2 {
  color: white;
  margin-top: 0;
  font-size: 32px;
}

.team-section p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px 0;
  opacity: 0.95;
}

.team-highlight {
  background: rgba(255,255,255,0.2);
  padding: 20px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  border-left: 4px solid rgba(255,255,255,0.5);
}

@media (max-width:600px){
  header{padding:14px 10px}
  .container{padding:0 10px}
  .hero-about { padding: 40px 0 }
  .hero-content h1 { font-size: 32px }
  .hero-subtitle { font-size: 16px }
  .mission-card, .why-section, .team-section { padding: 24px }
}

/* Contact Page Styles */
.contact-page h2 { color: #0b5cff; font-size: 28px; margin-bottom: 32px; text-align: center }

.hero-contact {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 50%, #003399 100%);
  color: white;
  padding: 60px 0;
  border-radius: 16px;
  margin-bottom: 48px;
  text-align: center;
}

.hero-contact h1 {
  font-size: 48px;
  margin: 0 0 16px 0;
  font-weight: 700;
  animation: slideInDown 0.8s ease-out;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 4px solid #ccc;
}

.contact-card-1 { border-top-color: #ff6b6b }
.contact-card-2 { border-top-color: #4ecdc4 }
.contact-card-3 { border-top-color: #ffd93d }

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.contact-card h3 {
  margin: 0 0 12px 0;
  color: #0b5cff;
  font-size: 20px;
}

.contact-card p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.contact-card a {
  color: #0b5cff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #0047cc;
  text-decoration: underline;
}

.contact-form-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 48px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #222;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #d0d8ff;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0b5cff;
  box-shadow: 0 0 0 3px rgba(11, 92, 255, 0.1);
}

.btn-submit {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 100%);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(11, 92, 255, 0.3);
}

.social-section {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 100%);
  color: white;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.social-section h2 {
  color: white;
  margin-top: 0;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Hustle Pages Styles */
.hustle-page { max-width: 900px }

.hero-hustle {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 50%, #003399 100%);
  color: white;
  padding: 50px 0;
  border-radius: 16px;
  margin-bottom: 32px;
  text-align: center;
  animation: slideInDown 0.8s ease-out;
}

.hero-hustle h1 {
  font-size: 42px;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.hustle-content {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  line-height: 1.7;
}

.hustle-content h3 {
  color: #0b5cff;
  margin-top: 28px;
  margin-bottom: 16px;
  font-size: 22px;
}

.hustle-content p {
  color: #555;
  margin-bottom: 16px;
}

.hustle-content ol,
.hustle-content ul {
  color: #555;
  margin: 0 0 16px 20px;
  padding: 0;
}

.hustle-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Homepage Hero Section */
.hero-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
  padding: 60px 0;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px) }
  to { opacity: 1; transform: translateX(0) }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px) }
  to { opacity: 1; transform: translateX(0) }
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.highlight-primary {
  color: #0b5cff;
}

.highlight-secondary {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-subtitle strong {
  color: #0b5cff;
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11, 92, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(11, 92, 255, 0.4);
}

.btn-secondary {
  background: white;
  color: #0b5cff;
  padding: 16px 32px;
  border: 2px solid #0b5cff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #f0f4ff;
  transform: translateY(-4px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
  display: inline-block;
}

.hero-graphic {
  position: relative;
  height: 400px;
  animation: slideInRight 0.8s ease-out;
}

.floating-card {
  position: absolute;
  background: white;
  width: 120px;
  height: 120px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 0;
  left: 0;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  top: 120px;
  right: 0;
  animation: float 3s ease-in-out infinite 0.5s;
}

.card-3 {
  bottom: 0;
  left: 50px;
  animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) }
  50% { transform: translateY(-20px) }
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ccc;
}

.stat-1 { border-top-color: #ff6b6b }
.stat-2 { border-top-color: #4ecdc4 }
.stat-3 { border-top-color: #ffd93d }
.stat-4 { border-top-color: #a78bfa }

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #0b5cff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #666;
  font-weight: 600;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 42px;
  margin: 0 0 16px 0;
  color: #222;
}

.gradient-text {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Card Animations */
.card-animated {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-animated:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 32px rgba(11, 92, 255, 0.2);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% { transform: scale(0); opacity: 0 }
  100% { transform: scale(1); opacity: 1 }
}

.card-animated:nth-child(1) .card-icon { animation-delay: 0s }
.card-animated:nth-child(2) .card-icon { animation-delay: 0.1s }
.card-animated:nth-child(3) .card-icon { animation-delay: 0.2s }
.card-animated:nth-child(4) .card-icon { animation-delay: 0.3s }
.card-animated:nth-child(5) .card-icon { animation-delay: 0.4s }

.card h3 a {
  color: #0b5cff;
  transition: color 0.3s ease;
}

.card-animated:hover h3 a {
  color: #0047cc;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0b5cff 0%, #0047cc 100%);
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 42px;
  margin: 0 0 16px 0;
  color: white;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.cta-section strong {
  font-weight: 700;
}

.cta-section .btn-primary {
  background: white;
  color: #0b5cff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
  background: #f0f4ff;
}

/* Footer Links */
.footer-links {
  text-align: center;
  margin: 48px 0;
}

.footer-links a {
  color: #0b5cff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #0047cc;
  text-decoration: underline;
}

/* Responsive */
@media (max-width:900px){
  .hero-home {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-graphic {
    display: none;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .cta-section {
    padding: 40px;
  }
  
  .cta-section h2 {
    font-size: 32px;
  }
}

@media (max-width:600px){
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .stats-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
}