/* Payment Plan Styles */
:root {
  --primary: #116e35;
  --primary-dark: #0b5b2b;
  --secondary: #ff6b35;
  --light-bg: #f8f9fa;
}

.page-header {
  background: 
    linear-gradient(135deg, rgba(1, 12, 5, 0.85) 0%, rgba(11, 91, 43, 0.85) 100%),
    url('assets/images/header.jpg') center/cover no-repeat;
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-header .section-head {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: white;
  font-size: 2.8rem;
  margin: 10px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  margin-top: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.subtle {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Role Selection */
.role-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
    background: var(--light-bg);
}

.role-option {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.role-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.role-option.active {
    border-color: var(--primary);
    background: rgba(17, 110, 53, 0.05);
}

.role-icon {
    margin-bottom: 20px;
}

.role-icon svg {
    fill: var(--primary);
}

.role-option h3 {
    color: var(--primary-dark);
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.role-option p {
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 860px) {
    .role-selection {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    
    .role-option {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .role-selection {
        grid-template-columns: 1fr;
    }
    
    .role-option {
        padding: 25px 20px;
        margin: 0 -16px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
}