/*
Theme Name: Ashoka Theme
Theme URI: 
Author: Your Name
Author URI: 
Description: A custom theme built from scratch
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ashoka-theme
Tags: custom, minimal, clean

This theme is built for custom development.
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Keep Inter for buttons, labels, and navigation */
button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"],
label,
.button,
.hero-button,
.hero-button-outline,
.main-navigation a,
.menu-text,
#footer-menu a {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Links */
a {
    color: #082041;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a70e13;
}

a:visited {
    color: #082041;
}

/* Ensure button-like links remain readable when visited */
.hero-button:visited,
.hero-button-outline:visited,
.button:visited {
    color: #fff;
}


/* Basic layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.program-overview a {
    color: #a70e13
}

/* Header */
.site-header {
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #082041;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    display: block;
    padding: 5px 10px;
    border-radius: 3px;
}

.logo-image {
    max-height: 50px;
    width: auto;
    display: block;
    padding: 0;
    border-radius: 0;
}

.site-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #082041;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #082041;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .material-icons {
    font-size: 24px;
}

/* Navigation */
.main-navigation {
    margin: 0;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0px 20px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 3px 0;
}

.menu-item-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-icon {
    margin-right: 6px;
    font-size: 18px;
    color: #082041;
    transition: color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.menu-text {
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
    line-height: 1.2;
    max-width: 100%; /* Ensure text doesn't overflow */
    word-wrap: break-word; /* Allow long words to break */
}

/* For multi-line menu items */
.main-navigation a {
    min-height: 32px; /* Ensure consistent height */
}

.main-navigation a:hover {
    color: #a70e13;
}

.main-navigation a:hover .menu-icon {
    color: #a70e13;
    transform: translateY(-2px);
}

.menu-text:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #a70e13;
    transition: width 0.3s ease;
}

.main-navigation a:hover .menu-text:after {
    width: 100%;
}

.main-navigation li.current-menu-item > a,
.main-navigation li.current-page-ancestor > a {
    color: #a70e13;
    font-weight: 600;
}

.main-navigation li.current-menu-item > a .menu-icon,
.main-navigation li.current-page-ancestor > a .menu-icon {
    color: #a70e13;
}

.main-navigation li.current-menu-item > a .menu-text:after,
.main-navigation li.current-page-ancestor > a .menu-text:after {
    width: 100%;
    background-color: #a70e13;
}

/* Content */
.site-content {
    padding: 0 0 0 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.site-content > .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Make the primary content area full width like the hero section */
#primary {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    /* Increase pattern opacity */
    background-image: 
        linear-gradient(45deg, rgba(8, 32, 65, 0.04) 25%, transparent 25%, transparent 75%, rgba(8, 32, 65, 0.04) 75%),
        linear-gradient(-45deg, rgba(167, 14, 19, 0.04) 25%, transparent 25%, transparent 75%, rgba(167, 14, 19, 0.04) 75%);
    background-size: 60px 60px;
    background-color: rgba(245, 245, 250, 0.6);
}

/* Maintain proper container width for the site-main within primary */
#main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    background: #082041;
    color: #fff;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-navigation {
    width: 100%;
}

#footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

#footer-menu li {
    margin: 0;
}

#footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

#footer-menu a:hover {
    color: #a70e13;
}

.site-info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    padding-top: 15px;
}

.copyright {
    color: #fff;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

/* Buttons and Form Elements */
button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"] {
    background-color: #082041;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, 
input[type="button"]:hover, 
input[type="reset"]:hover, 
input[type="submit"]:hover {
    background-color: #a70e13;
}

.button:hover {
    background-color: #a70e13;
    color: #fff;
    text-decoration: none;
    border-color: #a70e13;
}

.button-outline {
    background-color: transparent;
    color: #082041;
    border: 2px solid #082041;
}

.button-outline:hover {
    background-color: #082041;
    color: #fff;
    border-color: #082041;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .site-header {
        padding: 8px 0;
    }
    
    .header-container {
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }
    
    .site-branding {
        width: auto;
        flex: 1;
    }
    
    .logo-image {
        max-height: 40px;
    }
    
    .menu-toggle {
        display: block;
        color: #082041;
    }

    .menu-toggle:hover {
        background-color: transparent;
    }
    
    .menu-toggle .material-icons {
        font-size: 24px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        background: #fff;
        border-top: 1px solid #eee;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        padding: 8px 0;
        width: 100%;
    }
    
    .menu-icon {
        font-size: 18px;
    }
    
    #footer-menu {
        justify-content: center;
        text-align: center;
    }

    .site-info {
        justify-content: center;
    }
    
    .cta-buttons a {
        display: block;
        margin: 10px auto !important;
        width: 80%;
    }
}

/* Homepage Styles */
.hero-section {
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
    box-sizing: border-box;
}

/* Hero background image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Add decorative elements to the sides of the hero section */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 15vw;
    background: url('images/ashoka-logo.png') right center no-repeat;
    background-size: 60%;
    opacity: 0.05;
    z-index: 2;
    transform: scale(2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(8, 32, 65, 0.85) 0%, rgba(10, 50, 104, 0.85) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    z-index: 1;
}

/* Add left decorative element */
.hero-section .container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15vw;
    width: 15vw;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(167, 14, 19, 0.1) 0%, rgba(167, 14, 19, 0) 60%),
        radial-gradient(circle at 40% 70%, rgba(8, 32, 65, 0.1) 0%, rgba(8, 32, 65, 0) 60%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

.college-readiness {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 auto 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-cta {
    margin-top: 30px;
}

.hero-button,
.hero-button-outline,
.hero-button-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-button .material-icons,
.hero-button-outline .material-icons,
.hero-button-dark .material-icons {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.hero-button:hover .material-icons,
.hero-button-outline:hover .material-icons,
.hero-button-dark:hover .material-icons {
    transform: translateX(3px);
}

a.hero-button {
    background-color: #8a0d10;
    color: #fff;
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%), inset -2px -2px 3px 0px #000000;
    position: relative;
}

.hero-button::before,
.hero-button-outline::before,
.hero-button-dark::before {
    display: none !important;
    content: none !important;
}



a.hero-button:hover {
    background-color: #fff;
    color: black;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0 0 0 / 40%);
}

.hero-button:hover::before {
    border-color: rgba(44, 82, 130, 0.5);
    transform: scale(1.02);
}

.hero-button-outline {
    background-color: transparent;
    color: #fff;
    outline: 2px solid #fff;
    margin-left: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-button-outline:hover {
    background-color: #fff;
    color: #082041;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

a.hero-button-outline {
    color: white;
}

.hero-button-dark {

    background: black;
    outline: none;
    color: #ffffff !important;
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%), inset -2px -2px 3px 0px #2281a5;
    margin-left: 15px;

}

.hero-button-dark:hover {
    background-color: #fff;
    color: #082041 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        background-position: center center;
        background-size: cover;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        box-sizing: border-box;
    }
    
    .hero-section::before {
        background: linear-gradient(135deg, rgba(8, 32, 65, 0.9) 0%, rgba(10, 50, 104, 0.9) 100%);
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }
    
    .college-readiness {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-button, .hero-button-outline, .hero-button-dark {
        width: 80%;
        margin: 10px auto;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.features-section {
    padding: 60px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    /* Remove background as it's now on the primary element */
    background-image: none;
    background-color: transparent;
}

/* Update side patterns to be positioned relative to the primary element */
.features-section::before, 
.features-section::after {
    display: none; /* Remove these as we'll add new ones to #primary */
}

/* Update side patterns to match the new branded pattern */
#primary::before, 
#primary::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc((100% - 1200px) / 2);
    /* Increase gradient opacity */
    background: linear-gradient(to right, rgba(8, 32, 65, 0.06), transparent);
    z-index: 1;
    min-width: 50px;
    opacity: 0.7;
}

#primary::before {
    left: 0;
}

#primary::after {
    right: 0;
    background: linear-gradient(to left, rgba(167, 14, 19, 0.06), transparent);
}

.program-overview {
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.85);
    background-image: none;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 32, 65, 0.07);
    backdrop-filter: blur(3px);
    /* Add subtle gradient border */
    border: 1px solid transparent;
    background-clip: padding-box;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
        linear-gradient(45deg, rgba(8, 32, 65, 0.1), rgba(167, 14, 19, 0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.program-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #082041, #a70e13);
}

.program-overview-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.program-overview-icon {
    font-size: 2rem;
    color: #fff;
    opacity: 0.95;
    background: linear-gradient(135deg, #082041, #093d7d);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.program-overview-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(8, 32, 65, 0.3);
}

.program-overview h2,
.quick-links h2,
.events-section h2 {
    color: #082041;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program-overview h2:after,
.quick-links h2:after,
.events-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #a70e13, #082041);
    border-radius: 2px;
}

.program-overview p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    padding: 0;
    backdrop-filter: none;
}

.quick-links {
    margin-bottom: 60px;
    position: relative;
}

/* Add branded side accents to quick links section */
.quick-links::before,
.quick-links::after {
    content: '';
    position: absolute;
    height: 100px;
    width: 5px;
    background: linear-gradient(to bottom, #082041, #a70e13);
    border-radius: 5px;
    z-index: 1;
}

.quick-links::before {
    left: -100px;
    top: 20%;
    transform: rotate(-30deg);
}

.quick-links::after {
    right: -100px;
    top: 60%;
    transform: rotate(30deg);
}

/* Add decorative circles on wider screens */
@media (min-width: 1400px) {
    .quick-links::before,
    .quick-links::after {
        display: block;
    }
    
    /* Add floating decorative elements */
    .quick-links::before {
        content: '';
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: rgba(8, 32, 65, 0.03);
        border: 2px dashed rgba(8, 32, 65, 0.1);
        left: -200px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .quick-links::after {
        content: '';
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: rgba(167, 14, 19, 0.03);
        border: 2px dashed rgba(167, 14, 19, 0.1);
        right: -150px;
        top: 30%;
    }
}

/* Hide decorative elements on smaller screens */
@media (max-width: 1399px) {
    .quick-links::before,
    .quick-links::after {
        display: none;
    }
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Ensures cards maintain minimum width but are evenly distributed */
@media (min-width: 768px) and (max-width: 1000px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1001px) {
    .links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quick-link-card {
    background-color: rgba(255, 255, 255, 0.85);
    background-image: none;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(8, 32, 65, 0.07);
    backdrop-filter: blur(3px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}

.card-icon .material-icons {
    font-size: 32px;
    color: #082041;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(8, 32, 65, 0.1);
}

.quick-link-card h3 {
    color: #082041;
    position: relative;
    transition: color 0.3s ease;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

/* Update hover effects */
.quick-link-card:hover .card-icon .material-icons {
    color: #a70e13;
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.1) rotate(5deg);
    border: 1px solid rgba(167, 14, 19, 0.1);
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #082041;
    transition: background-color 0.3s ease;
}

.quick-link-card:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(167, 14, 19, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.quick-link-card:hover::before {
    background-color: #a70e13;
}

.quick-link-card p {
    color: #555;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    padding: 0;
    backdrop-filter: none;
}

.quick-link-card:hover h3 {
    color: #a70e13;
}

.quick-link-card:hover p {
    color: #333;
}

.events-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
    position: relative;
    overflow: visible;
}

/* Add side decoration to events section */
.events-section::before,
.events-section::after {
    content: '';
    position: absolute;
    height: 70%;
    width: calc((100% - 1200px) / 2);
    top: 15%;
    background-size: 15px 15px;
    background-image: radial-gradient(circle, rgba(8, 32, 65, 0.05) 1px, transparent 1px);
    z-index: -1;
    opacity: 0.7;
}

.events-section::before {
    left: 0;
}

.events-section::after {
    right: 0;
}

/* Add floating decorative quote marks on wider screens */
@media (min-width: 1500px) {
    .events-section::before {
        content: '"';
        font-family: 'Georgia', serif;
        font-size: 150px;
        color: rgba(8, 32, 65, 0.03);
        background: none;
        height: auto;
        width: auto;
        line-height: 1;
        top: 10%;
        left: 50px;
    }
    
    .events-section::after {
        content: '"';
        font-family: 'Georgia', serif;
        font-size: 150px;
        color: rgba(167, 14, 19, 0.03);
        background: none;
        height: auto;
        width: auto;
        line-height: 1;
        bottom: 10%;
        top: auto;
        right: 50px;
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background-color: rgba(255, 255, 255, 0.85);
    background-image: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(8, 32, 65, 0.07);
    backdrop-filter: blur(3px);
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #082041;
    transition: background-color 0.3s ease;
}

.event-card:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(167, 14, 19, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.event-card:hover::before {
    background-color: #a70e13;
}

.event-card h3 {
    color: #082041;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 12px;
    transition: color 0.3s ease;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.event-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #a70e13;
    transition: width 0.3s ease;
}

.event-card:hover h3::after {
    width: 70px;
}

.event-card:hover h3 {
    color: #a70e13;
}

.event-date {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 14px;
    background-color: #082041;
    border-radius: 50px;
    font-size: 0.9rem;
    box-shadow: 0 3px 8px rgba(8, 32, 65, 0.2);
    font-family: 'Inter', sans-serif;
}

.event-description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    padding: 0;
    backdrop-filter: none;
}

.button {
    display: inline-block;
    background-color: #082041;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid #082041;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 3px 8px rgba(8, 32, 65, 0.2);
}

.button:hover {
    background-color: #a70e13;
    color: #fff;
    text-decoration: none;
    border-color: #a70e13;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(167, 14, 19, 0.3);
}

@media (max-width: 768px) {
    .links-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .program-overview {
        padding: 25px;
    }
    
    .program-overview h2,
    .quick-links h2,
    .events-section h2 {
        font-size: 1.7rem;
    }
    
    .event-card,
    .quick-link-card {
        padding: 25px;
    }
}

/* Page Header Styles */
.page-header {
    margin-bottom: 32px;
    margin-top: 48px;
    padding-bottom: 20px;
}

.page-title {
    color: #082041;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 5px;
    border-left: 4px solid #082041;
}

.contact-details h3 {
    color: #082041;
    margin-bottom: 15px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-method:last-child {
    border-bottom: none;
}

.contact-method h4 {
    color: #082041;
    margin-bottom: 10px;
}

.contact-form {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #082041;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Common Elements */
blockquote {
    border-left: 4px solid #a70e13;
    padding-left: 20px;
    margin-left: 0;
    font-style: italic;
    color: #555;
}

hr {
    border: none;
    height: 2px;
    background-color: #082041;
    margin: 30px 0;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table th {
    background-color: #082041;
    color: #fff;
    padding: 10px 15px;
    text-align: left;
}

.wp-block-table td {
    padding: 10px 15px;
    border: 1px solid #ddd;
}

.wp-block-table tr:nth-child(even) {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
}

/* Registration Page Styles */
.registration-section {
    margin-bottom: 50px;
}

.registration-intro {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 4px solid #082041;
}

.registration-steps {
    margin-top: 40px;
}

.registration-step {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: #a70e13;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.registration-step h3 {
    color: #082041;
    margin-bottom: 15px;
    padding-left: 25px;
}

.registration-form {
    background: #fff;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 32px 24px 24px 24px;
    max-width: 480px;
    margin: 0 auto 40px auto;
    box-shadow: 0 4px 24px rgba(8,32,65,0.07);
}

.registration-form .form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}

.registration-form label {
    font-weight: 500;
    margin-bottom: 7px;
    color: #082041;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form textarea {
    padding: 10px 12px;
    border: 1.5px solid #cfd8dc;
    border-radius: 6px;
    font-size: 1em;
    background: #f9f9f9;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: #333;
}

.registration-form input[type="text"]:focus,
.registration-form input[type="email"]:focus,
.registration-form textarea:focus {
    border-color: #a70e13;
    outline: none;
    box-shadow: 0 0 0 2px #f8d7da;
    background: #fff;
}

.registration-form textarea {
    min-height: 90px;
    resize: vertical;
}

.registration-form .form-actions {
    text-align: right;
}

.registration-form .hero-button {
    background: #a70e13;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(8,32,65,0.07);
}

.registration-form .hero-button:hover,
.registration-form .hero-button:focus {
    background: #082041;
    color: #fff;
    box-shadow: 0 4px 16px rgba(8,32,65,0.15);
}

.registration-success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.1em;
}

/* Accessibility Improvements */
:focus {
    outline: 2px solid #082041;
    outline-offset: 2px;
}

.skip-link {
    background-color: #082041;
    color: #fff;
    font-weight: 700;
    left: 50%;
    padding: 8px;
    position: absolute;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.skip-link:focus {
    transform: translateY(0%);
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-col {
        margin-bottom: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-secondary {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Accessibility */
.screen-reader-text,
.sr-only {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #082041;
    display: block;
    font-size: 14px;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #082041;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
}

/* Side decorations */
.side-decoration {
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100% - 1200px) / 2);
    z-index: -1;
    min-width: 30px;
    max-width: 300px;
    opacity: 0.5;
    pointer-events: none;
    animation: patternFade 8s infinite alternate;
}

@keyframes patternFade {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

.left-decoration {
    left: 0;
    background: 
        linear-gradient(to right, rgba(8, 32, 65, 0.02), transparent 80%),
        linear-gradient(to bottom, rgba(8, 32, 65, 0.01) 1px, transparent 1px),
        linear-gradient(to right, rgba(8, 32, 65, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
}

.right-decoration {
    right: 0;
    background: 
        linear-gradient(to left, rgba(167, 14, 19, 0.02), transparent 80%),
        linear-gradient(to bottom, rgba(167, 14, 19, 0.01) 1px, transparent 1px),
        linear-gradient(to right, rgba(167, 14, 19, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
}

/* Only show side decorations on larger screens */
@media (max-width: 1400px) {
    .side-decoration {
        display: none;
    }
}

/* Add subtle animation to the grid pattern on hover */
.quick-link-card:hover,
.event-card:hover {
    animation: gridPulse 2s infinite alternate;
}

@keyframes gridPulse {
    0% {
        background-size: 15px 15px;
    }
    100% {
        background-size: 18px 18px;
    }
}

/* Update wide screen media query for the branded pattern */
@media (min-width: 1500px) {
    #primary::before, 
    #primary::after {
        width: calc((100% - 1400px) / 2);
        /* Increase gradient opacity for larger screens */
        background: linear-gradient(to right, rgba(8, 32, 65, 0.08), transparent);
    }

    #primary::after {
        background: linear-gradient(to left, rgba(167, 14, 19, 0.08), transparent);
    }

    /* Add floating decorative elements on the sides */
    #main::before,
    #main::after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        z-index: 0;
    }

    #main::before {
        left: -150px;
        top: 30%;
        background: radial-gradient(circle, rgba(8, 32, 65, 0.05) 0%, rgba(8, 32, 65, 0) 70%);
    }

    #main::after {
        right: -150px;
        top: 60%;
        background: radial-gradient(circle, rgba(167, 14, 19, 0.05) 0%, rgba(167, 14, 19, 0) 70%);
    }
}


.hero-button-outline,
.hero-button-outline .material-icons {
    color: #fff !important;
}

.hero-button-outline:hover,
.hero-button-outline:hover .material-icons {
    color: #2c5282 !important;
}

/* Testimonials Section */
.testimonials-section {
    margin: 40px 0;
}
.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(8,32,65,0.07);
    padding: 24px;
    max-width: 400px;
    flex: 1 1 300px;
    min-width: 260px;
    transition: box-shadow 0.2s;
}
.testimonial-card h3 {
    margin-bottom: 12px;
    color: #082041;
    font-size: 1.2em;
}
.testimonial-content {
    font-style: normal;
    color: #333;
}
.testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(8,32,65,0.15);
}
.testimonial-author {
    margin-top: 10px;
    font-style: italic;
    color: #a70e13;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 4px;
}
.testimonial-author .material-icons {
    font-size: 1.2em;
    color: #a70e13;
    margin-right: 4px;
}
.testimonial-author .author-name {
    color: #333;
    font-style: normal;
    font-weight: 500;
}
.testimonial-author.right-align {
    justify-content: flex-end;
    text-align: right;
}
.justified {
    text-align: justify;
}
.back-to-top-link {
    color: #a70e13;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s;
}
.back-to-top-link:hover {
    color: #082041;
}

.testimonials-videos-carousel {
    margin-bottom: 32px;
    text-align: center;
}
.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.carousel-control {
    background: #a70e13;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.carousel-control:focus {
    outline: 2px solid #082041;
    background: #082041;
}
.carousel-track {
    display: flex;
    overflow: hidden;
    width: 500px;
    min-height: 280px;
    position: relative;
}
.carousel-item {
    min-width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s;
}
.carousel-item[aria-selected="true"] {
    display: flex;
} 

.crc-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    background: linear-gradient(90deg, #8a0d10 0%, #b71c1c 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 7px;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(138,13,16,0.18), 0 0 0 4px rgba(183,28,28,0.07) inset;
    border: 2px solid #b71c1c;
    text-decoration: none;
    transition: background 0.25s, box-shadow 0.25s, transform 0.25s, letter-spacing 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
    position: relative;
}
.crc-brochure-btn .material-icons {
    font-size: 1.3em;
    vertical-align: middle;
    transition: color 0.25s, transform 0.25s;
}
.crc-brochure-btn .material-icons:last-child {
    margin-left: 8px;
}
.crc-brochure-btn:hover, .crc-brochure-btn:focus {
    background: linear-gradient(90deg, #b71c1c 0%, #8a0d10 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(138,13,16,0.28), 0 0 0 6px rgba(183,28,28,0.12) inset;
    transform: translateY(-3px) scale(1.03);
    text-decoration: none;
    outline: none;
    letter-spacing: 0.08em;
}
.crc-brochure-btn:focus {
    outline: 3px solid #fff176;
    outline-offset: 2px;
}
.crc-brochure-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(138,13,16,0.18);
}
.crc-brochure-btn:hover .material-icons:last-child {
    /* Remove yellow color */
    color: inherit;
    transform: translateY(2px) scale(1.15);
}
.crc-brochure-btn .crc-badge {
    background: #fff176;
    color: #8a0d10;
    font-size: 0.7em;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px 6px;
    margin-left: 10px;
    vertical-align: middle;
} 

/* Only keep .btn-burgundy for the CRC Brochure button */
.btn-burgundy {
    background: #4b1013;
    border-color: #4b1013;
    box-shadow: 0 4px 6px rgb(0 0 0 / 30%), inset -2px -2px 3px 0px #000000;
}
.btn-burgundy:hover, .btn-burgundy:focus {
    background: #a70e13;
    box-shadow: 0 8px 28px rgba(75,16,19,0.18), 0 0 0 6px rgba(75,16,19,0.12) inset;
}
.btn-burgundy:active {
    box-shadow: 0 2px 8px rgba(75,16,19,0.18);
}

.btn-red-border {
    background: #a70e13;
    border: 2px solid #8a0d10;
}
.btn-red-border:hover, .btn-red-border:focus {
    background: #8a0d10;
    box-shadow: 0 8px 28px rgba(167,14,19,0.18), 0 0 0 6px rgba(167,14,19,0.12) inset;
}
.btn-red-border:active {
    box-shadow: 0 2px 8px rgba(167,14,19,0.18);
} 

/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
  }
  .ribbon {
    --f: .5em; /* control the folded part */
    
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-image: conic-gradient(#0008 0 0) 51%/var(--f);
    clip-path: polygon(
      100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
    transform-origin: 0% 100%;
    background-color: #BD1550; /* the main color  */
  }

.crc-brochure-btn:visited,
.crc-brochure-btn.btn-burgundy:visited {
    color: #fff;
    background: #4b1013;
}

/* General Page Styles */
.general-content {
    margin: 40px 0;
}

.content-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(8, 32, 65, 0.1);
    border: 1px solid rgba(8, 32, 65, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}




.content-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.content-box ul,
.content-box ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-box li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.content-box a {
    color: #a70e13;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-box a:hover {
    color: #082041;
    text-decoration: underline;
}


/* Mobile responsive for general content */
@media (max-width: 768px) {
    .content-box {
        padding: 25px;
        margin: 20px 0;
    }

}

/* Student Resources Page Styles */
.website-help-section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(8, 32, 65, 0.1);
    border: 1px solid rgba(8, 32, 65, 0.1);
    backdrop-filter: blur(5px);
}

.website-help-section h2 {
    color: #082041;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.website-help-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #a70e13, #082041);
    border-radius: 2px;
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.help-steps::before {
    content: '';
    position: absolute;
    left: 59px;
    top: 60px;
    bottom: 95px;
    width: 3px;
    background: linear-gradient(to bottom, #082041, #a70e13);
    border-radius: 2px;
    z-index: 1;
}

.help-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}



.step-number {
    background: linear-gradient(135deg, #082041, #a70e13);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(8, 32, 65, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 3px solid #fff;
}



.step-content {
    flex: 1;
}

.step-content h3 {
    color: #082041;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}



.step-content p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.step-content a {
    color: #a70e13;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.step-content a:hover {
    color: #082041;
    text-decoration: underline;
}

.student-nav {
    margin-top: 30px;
    padding: 20px 0;
}

.student-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.student-nav li {
    margin: 0;
}

.student-nav a {
    color: #082041;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #082041;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
}

.student-nav a:hover {
    background: #082041;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 32, 65, 0.3);
}


/* Ensure step numbers are accessible */
.step-number {
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: border-color 0.3s ease;
}

.help-step:focus-within .step-number::before {
    border-color: #a70e13;
}

/* Responsive adjustments for student page */
@media (max-width: 768px) {
    .website-help-section {
        padding: 25px;
        margin: 30px 0;
    }
    
    .website-help-section h2 {
        font-size: 1.6rem;
    }
    
    .help-step {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
        margin-left: 0;
        align-items: center;
    }
    
    .help-steps::before {
        display: none;
    }
    
    .step-number {
        margin: 0 auto 0  auto;
        left: 0px;
    }
    
    .step-content {
        flex: 1;
        min-width: 0;
        width: 100%;
        text-align: left;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .step-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 10px;
    }
    
    .student-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .student-nav a {
        width: 200px;
        text-align: center;
    }
    
}

.callout {
    background: #e2aa1912;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    border: solid 1px #dcd1b8;
    border-left: solid 4px #c72f2f;
    box-shadow: 1px 1px 3px 0px #b4aaaa;
    border-radius: 4px;

}

