:root {
    --orange: #f57c00;
    --blue: #005cb9;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.page-header {
  background: var(--orange);
  color: var(--white);
  margin-top: 24px;
  padding: 20px 0 !important;
  text-align: center;

}

.page-header h1 {
  font-size: 36px !important;
  font-weight: 700;
}

.contact-card {
    background: #fff;
    border-left: 5px solid var(--orange);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    /* Ensures equal height */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 92, 185, 0.15);
}

.icon-label {
    color: var(--orange);
    font-weight: 600 !important;
}

.email-link {
    color: var(--blue);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.form-label {
    font-weight: 600 !important;
}