/* Custom styles */
:root {
  --primary-color: #3b82f6;
  --secondary-color: #10b981;
  --accent-color: #8b5cf6;
  --light-bg: #f9fafb;
}

.section {
  padding: 4rem 1.5rem;
}

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

/* Animation for elements */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
}

/* Logo styling */
.logo-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.site-logo {
    width: 250px;
    height: auto;
    max-height: none;
}

/* For responsive design */
@media (max-width: 768px) {
    .site-logo {
        width: 250px; /* Maintain 250px width on mobile too */
        height: auto;
    }
}