/* Student Support Page Styles */
.support-page {
    background-color: var(--snuff);
    color: var(--bossanova);
}

/* Page Banner - Fixed to match other pages with strong overrides */
.page-banner {
    position: relative !important;
    height: 300px !important;
    background: linear-gradient(rgba(84, 52, 107, 0.7), rgba(84, 52, 107, 0.7)), 
        url('https://images.unsplash.com/photo-1531545514256-b1400bc00f31?auto=format&fit=crop&w=1600&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 30px !important;
    z-index: 5 !important;
}

.page-banner .overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(84, 52, 107, 0.5) !important;
    z-index: 1 !important;
}

.page-banner .container {
    position: relative !important;
    z-index: 2 !important;
}

.page-banner h1 {
    font-size: 3rem !important;
    color: white !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.breadcrumbs {
    font-size: 1rem !important;
    color: white !important;
}

.breadcrumbs a {
    color: var(--gold-sand) !important;
    text-decoration: none !important;
}

.breadcrumbs a:hover {
    text-decoration: underline !important;
}

/* Support Services Section */
.support-section {
    padding-top: 0 !important; 
    margin-top: 0 !important;
    padding-bottom: 5rem;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--bossanova);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--gold-sand);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.divider.center {
    margin: 0 auto 2rem;
}

.text-center {
    text-align: center;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-sand);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--bossanova);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.support-card h2 {
    color: var(--bossanova);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.support-card p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.support-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.support-card ul li:before {
    content: '✓';
    color: var(--gold-sand);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Policies Section */
.policies-section {
    background-color: var(--snuff);
    padding: 5rem 0;
}

.policies-section .section-title {
    color: var(--bossanova);
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.policy-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-sand);
    transform: scaleX(0);
}

.policy-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.policy-card:hover::before {
    transform: scaleX(1);
}

.policy-card h3 {
    color: var(--bossanova);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.policy-card p {
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.policy-card ul, .policy-card ol {
    margin: 1.2rem 0;
    padding-left: 1.5rem;
    color: #555;
}

.policy-card li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-section .section-title {
    color: var(--bossanova);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--snuff);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-sand);
    transform: scaleX(0);
}

.contact-method:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--bossanova);
    margin-bottom: 1.5rem;
    display: block;
}

.contact-method h3 {
    color: var(--bossanova);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-method p {
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.contact-method a {
    color: var(--bossanova);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--gold-sand);
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: var(--gold-sand);
    color: var(--bossanova);
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--bossanova);
}

.outline-btn {
    background-color: transparent;
    color: var(--bossanova);
    border: 2px solid var(--bossanova);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .student-banner {
        padding: 5rem 0;
    }
    
    .student-banner h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .support-cards, .policy-cards, .contact-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .student-banner {
        padding: 4rem 0;
    }
    
    .student-banner h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .support-cards, .policy-cards, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .support-card, .policy-card, .contact-method {
        margin-bottom: 1.5rem;
    }
    
    .text-center {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .student-banner h1 {
        font-size: 1.8rem;
    }
    
    .breadcrumbs {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .support-card, .policy-card, .contact-method {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .support-page {
        padding: 1rem;
    }
    
    .student-banner {
        background: none !important;
        color: #000 !important;
        padding: 1rem 0 !important;
        margin-bottom: 1rem;
    }
    
    .support-card, .policy-card, .contact-method {
        box-shadow: none !important;
        border: 1px solid #ddd;
        page-break-inside: avoid;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        display: none;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.9em;
        color: #666;
    }
}
