body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #4E8BE6 0%, #244E99 50%, #712D91 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mentor-icon {
    background: linear-gradient(135deg, #4E8BE6, #712D91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-number {
    background: linear-gradient(135deg, #4E8BE6, #712D91);
}

.btn-primary {
    background: linear-gradient(135deg, #4E8BE6, #712D91);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(78, 139, 230, 0.3);
}

.feature-card {
    background: rgba(78, 139, 230, 0.05);
    border: 1px solid rgba(78, 139, 230, 0.1);
}

.testimonial-card {
    background: rgba(113, 45, 145, 0.05);
    border-left: 4px solid #712D91;
}

.faq-item {
    border-bottom: 1px solid rgba(78, 139, 230, 0.1);
}

.form-input {
    border: 2px solid rgba(78, 139, 230, 0.2);
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #4E8BE6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 139, 230, 0.1);
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #4E88E6, #712D91, transparent);
}

.sec-pad {
  padding: 8rem 0 5rem 0 !important;
}













/* Peer Mentor Application Form Styles */
.form-input {
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-size: 1rem;
}
.form-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #3b82f6;
    background-color: #fff;
    outline: none;
}
.btn-primary {
    background: linear-gradient(90deg, #2563eb 0%, #38bdf8 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(90deg, #1d4ed8 0%, #06b6d4 100%);
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(37,99,235,0.15);
}
input[type="checkbox"]:focus, input[type="radio"]:focus {
    outline: 2px solid #2563eb;
}
::-webkit-input-placeholder { color: #9ca3af; }
::-moz-placeholder { color: #9ca3af; }
:-ms-input-placeholder { color: #9ca3af; }
::placeholder { color: #9ca3af; }
.bg-blue-50 {
    background: #eff6ff;
}
.rounded-lg {
    border-radius: 0.75rem;
}
.shadow-lg {
    box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 1.5px 4px rgba(0,0,0,0.07);
}
label {
    cursor: pointer;
}
@media (max-width: 640px) {
    .rounded-2xl { border-radius: 1rem; }
    .px-12 { padding-left: 2rem; padding-right: 2rem; }
}
