/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Global Styles */
:root {
    --primary-color: #042845;
    --secondary-color: #A51931;
    --primary-contrast: color-contrast(var(--primary-color));
    --secondary-contrast: color-contrast(var(--secondary-color));
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 500;
}

h4 {
    font-size: 1.5rem;
    font-weight: 400;
}

h5 {
    font-size: 1.25rem;
    font-weight: 300;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.btn-apply {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

.btn-apply:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Top Bar */
.top-bar {
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: inherit;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    max-height: 75px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    color: #333 !important;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    padding: 8px 0;
    min-width: 220px;
}

.navbar-nav .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 0;
}

.navbar-nav .dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.navbar-nav .dropdown-item:focus {
    background-color: var(--primary-color);
    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.8);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.navbar-light .navbar-nav .nav-link:focus {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Enhanced Pulse Button Animation */
.pulse-button {
    animation: pulse 2s infinite;
}

.pulse-button-enhanced {
    animation: pulseEnhanced 2s infinite;
    position: relative;
    overflow: hidden;
    font-size: 1.25rem !important;
    padding: 1rem 2.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.pulse-button-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 50px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(165, 25, 49, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(165, 25, 49, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(165, 25, 49, 0);
    }
}

@keyframes pulseEnhanced {
    0% {
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3), 0 0 0 0 rgba(255, 193, 7, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4), 0 0 0 15px rgba(255, 193, 7, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3), 0 0 0 0 rgba(255, 193, 7, 0);
        transform: scale(1);
    }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.bg-light {
    background-color: #f8f9fa;
}

.section.section-primary {
    background-color: var(--primary-color);
    color: #fff;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Tiles */
.tiles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tile {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tile-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tile h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tile p {
    margin-bottom: 20px;
    color: #666;
}

/* Accordion */
.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Lists */
ul.list-styled {
    list-style: none;
    padding-left: 0;
}

ul.list-styled li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

ul.list-styled li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

ol.list-numbered {
    counter-reset: item;
    padding-left: 0;
    list-style: none;
}

ol.list-numbered li {
    counter-increment: item;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

ol.list-numbered li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Breadcrumbs */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: #6c757d;
}

/* Footer */
footer {
    color: #fff;
}

footer a {
    color: inherit;
}

footer a:hover {
    color: var(--secondary-color);
}

footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

footer ul.list-unstyled li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 991.98px) {
    /* Mobile Navigation Styles */
    .navbar-collapse {
        background-color: #fff;
        margin-top: 1rem;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 1px solid #e0e0e0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        color: #333 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
    }
    
    .navbar-nav .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-left: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.75rem 1.25rem;
        color: #333 !important;
        font-size: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: var(--primary-color);
        color: #fff !important;
    }
    
    /* Apply button in mobile */
    .navbar-nav .btn {
        margin-top: 1rem;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .tile {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        text-align: center;
    }
    
    .top-bar .top-bar-right {
        text-align: center !important;
        margin-top: 5px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
}

/* Additional Styles for Enhanced Layout */
.nav-pills .nav-link {
    border-radius: 25px;
    margin: 0 5px;
    font-weight: 500;
    padding: 10px 20px;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
}

.nav-pills .nav-link:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.tab-content .tile {
    border: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.d-flex .tile-icon {
    font-size: 2rem;
    margin-bottom: 0;
}

.tile h4, .tile h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.tile h6 {
    color: var(--primary-color);
    font-weight: 500;
}

.border.rounded {
    transition: all 0.3s ease;
}

.border.rounded:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Accordion Improvements */
.accordion-button {
    background-color: #f8f9fa;
    border: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #fff;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(4, 40, 69, 0.25);
}

.accordion-body {
    padding: 1.5rem;
}

/* Enhanced tile styling */
.tile.h-100 {
    display: flex;
    flex-direction: column;
}

.tile.h-100 .list-styled {
    flex-grow: 1;
}

/* Gradient backgrounds for special sections */
.tile[style*="linear-gradient"] {
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive improvements for new elements */
@media (max-width: 767.98px) {
    .nav-pills {
        flex-direction: column;
    }
    
    .nav-pills .nav-link {
        margin: 5px 0;
        text-align: center;
    }
    
    .d-flex.align-items-start {
        text-align: center;
    }
    
    .d-flex .flex-shrink-0 {
        margin: 0 auto 1rem auto;
    }
    
    .d-flex .flex-grow-1 {
        margin-left: 0 !important;
    }
}

/* CTA Section Styles */
.section-cta {
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.cta-button-container {
    position: relative;
    z-index: 2;
}

/* Feature Icons */
.feature-icon {
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(4, 40, 69, 0.3);
}

/* Enhanced Section Styling */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(4, 40, 69, 0.1) 50%, transparent 100%);
}

/* Improved Typography */
.display-4, .display-5, .display-6 {
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Background Decoration */
.position-absolute.opacity-10 {
    opacity: 0.05 !important;
    pointer-events: none;
}

/* Enhanced Tiles */
.tiles-container .tile {
    transition: all 0.3s ease;
    border: 1px solid rgba(4, 40, 69, 0.1);
}

.tiles-container .tile:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(4, 40, 69, 0.15);
}

/* Responsive CTA Section */
@media (max-width: 767.98px) {
    .pulse-button-enhanced {
        font-size: 1rem !important;
        padding: 0.875rem 2rem !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .section-cta .position-absolute {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .pulse-button-enhanced {
        font-size: 0.9rem !important;
        padding: 0.75rem 1.5rem !important;
    }
}

/* Content Cards */
.content-card {
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Highlight Box */
.highlight-box {
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Enhanced Timeline Styles */
.timeline-enhanced {
    position: relative;
    padding-left: 0;
}

.timeline-enhanced::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #28a745, #ffc107, #dc3545);
    border-radius: 2px;
}

.timeline-item-enhanced {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.timeline-item-enhanced:last-child {
    margin-bottom: 0;
}

.timeline-marker-enhanced {
    position: absolute;
    left: 15px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.timeline-content-enhanced {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-content-enhanced::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
}

.timeline-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-content-enhanced h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-content-enhanced p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.5;
}

/* Responsive Timeline */
@media (max-width: 767.98px) {
    .timeline-enhanced::before {
        left: 15px;
    }
    
    .timeline-item-enhanced {
        padding-left: 50px;
    }
    
    .timeline-marker-enhanced {
        left: 0;
        width: 25px;
        height: 25px;
        font-size: 0.75rem;
    }
    
    .timeline-content-enhanced::before {
        left: -6px;
        border-right-width: 6px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
}

/* Enhanced Update Cards */
.update-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.update-card-success {
    border-left: 5px solid #28a745;
}

.update-card-warning {
    border-left: 5px solid #ffc107;
}

.update-card-danger {
    border-left: 5px solid #dc3545;
}

.update-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.update-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    z-index: -1;
}

.update-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.update-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.update-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.update-item:last-child {
    margin-bottom: 0;
}

.update-item i {
    margin-top: 2px;
    flex-shrink: 0;
}

.update-item span {
    line-height: 1.4;
}

/* Time Restriction Cards */
.time-restriction-card {
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-restriction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.time-restriction-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.time-icon {
    position: relative;
    z-index: 2;
}

.time-restriction-card .badge {
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

/* Responsive Updates */
@media (max-width: 767.98px) {
    .update-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .update-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .update-item {
        flex-direction: column;
        text-align: center;
    }
    
    .update-item i {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .time-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .update-card {
        margin-bottom: 1.5rem;
    }
    
    .time-restriction-card {
        margin-bottom: 1.5rem;
    }
}

/* Process Steps Styling */
.process-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(4, 40, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.2rem;
}

.step-content {
    flex: 1;
    line-height: 1.5;
}

/* Reason Grid Styling */
.reason-section {
    background: #fff9e6;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #ffc107;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reason-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.reason-item div {
    flex: 1;
}

.reason-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.reason-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Verification Checklist Styling */
.verification-section {
    background: #e8f5e8;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #28a745;
}

.verification-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verification-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.verification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.verification-checkbox {
    width: 30px;
    height: 30px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.verification-checkbox i {
    color: #fff;
    font-size: 0.9rem;
}

.verification-content {
    flex: 1;
}

.verification-content strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.verification-content p {
    margin: 0;
    color: #666;
    line-height: 1.4;
}

/* Responsive Design for New Elements */
@media (max-width: 767.98px) {
    .process-steps,
    .verification-checklist {
        gap: 0.75rem;
    }
    
    .process-step,
    .verification-item,
    .reason-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon,
    .verification-checkbox {
        margin: 0 auto 0.75rem auto;
    }
    
    .reason-item {
        text-align: left;
    }
    
    .reason-item i {
        margin: 0 auto 0.75rem auto;
        display: block;
        text-align: center;
    }
    
    .reason-grid {
        grid-template-columns: 1fr;
    }
    
    .process-section,
    .reason-section,
    .verification-section {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .step-icon,
    .verification-checkbox {
        width: 25px;
        height: 25px;
    }
    
    .step-icon i {
        font-size: 1rem;
    }
    
    .verification-checkbox i {
        font-size: 0.8rem;
    }
    
    .reason-item i {
        font-size: 1.25rem;
    }
}