:root {
    --primary-color: #e30613; /* Logo red */
    --primary-color-rgb: 227, 6, 19; /* RGB for primary color */
    --secondary-color: #b30000; /* Darker red for hover states */
    --text-color: #000000; /* Black for text */
    --light-bg: #ffffff; /* White */
    --dark-bg: #e30613; /* Logo red */
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-shadow: 0 2px 10px rgba(227, 6, 19, 0.1);
    --top-nav-bg: #e30613;
    --top-nav-text: rgba(255, 255, 255, 0.9);
    --shedesa-red: #dc3545;
    --shedesa-black: #212529;
    --shedesa-white: #ffffff;
}

/* Top Navigation */
.top-nav {
    background-color: var(--top-nav-bg);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.top-nav a {
    color: var(--top-nav-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: white;
}

.top-nav-links a {
    margin-right: 1.5rem;
}

.top-nav-links i {
    margin-right: 0.5rem;
}

.top-nav-social {
    text-align: right;
}

.top-nav-social a {
    margin-left: 1rem;
    font-size: 1rem;
}

/* Adjust main navbar position */
.navbar {
    top: 32px; /* Height of top-nav */
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    padding-top: 112px; /* Height of both navbars */
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(227, 6, 19, 0.3), rgba(227, 6, 19, 0.3));
    z-index: 1;
}

.hero-section .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    z-index: 2;
}

.hero-section .carousel-indicators {
    z-index: 3;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    z-index: 3;
    width: 5%;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-section .btn-lg {
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-section .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.navbar {
    background-color: var(--shedesa-white) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--nav-shadow);
}

.navbar-brand {
    padding: 0;
    color: var(--shedesa-red) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.75rem; /* Adjust size as needed */
    letter-spacing: 0.5px; /* Optional: slight letter spacing */
    transition: color 0.3s ease; /* Smooth transition for hover */
}

/* .logo-img styles removed as image logo is no longer used */

.navbar-brand:hover {
    color: var(--secondary-color) !important; /* Darker red on hover */
}

.nav-link {
    color: var(--shedesa-black) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background-color: var(--shedesa-red) !important;
    color: var(--shedesa-white) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4);
    color: white !important;
}

.btn-login {
    background: transparent;
    color: var(--primary-color) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.2);
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Sections */
section {
    padding: 80px 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: 1px solid var(--shedesa-red);
    box-shadow: 0 4px 6px rgba(227, 6, 19, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--shedesa-red) !important;
    border-color: var(--shedesa-red) !important;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color) !important;
}

/* Contact Form */
.form-control {
    border-radius: 30px;
    padding: 12px 20px;
    border: 1px solid #ddd;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--shedesa-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
    color: white;
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .top-nav {
        display: none;
    }
    
    .navbar {
        top: 0;
    }
    
    body {
        padding-top: 80px;
    }
    
    .navbar-collapse {
        background-color: var(--nav-bg);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
    }
    
    .btn-login,
    .btn-cta {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .btn-cta {
        margin-left: 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .navbar,
    .container-fluid,
    .navbar-collapse {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .navbar .dropdown-menu {
        all: unset;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 110px !important;
        min-height: 100vh;
    }
    .hero-section .carousel-caption {
        padding-top: 40px !important;
    }
    .hero-section h1,
    .carousel-caption h1,
    .display-4 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    .hero-section .lead,
    .carousel-caption .lead {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1.2rem !important;
    }
    .hero-section .btn-lg,
    .carousel-caption .btn-lg,
    .hero-section .btn,
    .carousel-caption .btn {
        font-size: 1rem !important;
        padding: 0.5rem 1.2rem !important;
    }
}

/* Custom Dropdown Styles */
.navbar .dropdown-menu {
    max-width: 95vw !important;
    overflow-x: auto !important;
    box-sizing: border-box;
    border-radius: 0.5rem; /* Softer rounded corners */
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Standard Bootstrap shadow, can be customized */
    padding: 0.5rem 0;
    margin-top: 0.5rem; /* Add a little space between toggle and menu */
    background-color: var(--light-bg); /* Use light background from variables */
    animation: fadeInDropdown 0.3s ease-out; /* Fade-in animation */
}

/* Photo Gallery Styles */
.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(220, 53, 69, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img-container {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* Lightbox Override Styles */
.lb-outerContainer {
    border-radius: 0.5rem !important;
}

.lb-data .lb-caption {
    font-size: 1rem !important;
    font-weight: 500;
}

.lb-close {
    margin-top: 20px !important;
    margin-right: 20px !important;
}

/* About Page Styles */
.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--bs-light) 0%, #f8f9fa 100%);
}

/* Mission & Vision Cards */
.mission-card,
.vision-card {
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

/* Statistics Cards */
.stat-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--bs-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bs-primary);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    position: relative;
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
}

/* Team Cards */
.team-card {
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links a {
    color: var(--bs-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--bs-primary-dark);
}

/* Responsive Timeline */
@media (max-width: 767.98px) {
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item::before {
        left: 31px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
    }
}

.navbar .dropdown-item {
    padding: 0.75rem 1.25rem; /* More padding for a spacious feel */
    color: var(--text-color);
    font-weight: 500;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar .dropdown-item i {
    margin-right: 0.75rem; /* Space between icon and text */
    width: 1.25em; /* Ensure icons align nicely */
    text-align: center;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: rgba(var(--primary-color-rgb), 0.1); /* Use primary color with alpha for hover */
    color: var(--primary-color);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active {
    background-color: var(--primary-color);
    color: white;
}

.navbar .dropdown-divider {
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* Fade-in animation for dropdown */
@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards */
.feature-card {
    background-color: var(--shedesa-white);
    border: 1px solid var(--shedesa-red);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

/* Adjust dropdown toggle to use flex for aligning text and our new <i> icon */
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4em; /* Space between text/image and our new icon */
    /* white-space, padding, position, box-sizing will rely on default .nav-link styles or are not needed for this approach */
}

/* Hide Bootstrap's default ::after arrow, as we are using our own <i> tag arrow */
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle::after {
    display: none !important;
}

/* Styling for our new <i> tag dropdown arrow */
.navbar .nav-link .dropdown-arrow-icon {
    transition: transform 0.3s ease-in-out;
    display: inline-block; /* Ensures transform works correctly */
    transform: rotate(180deg); /* Default to pointing DOWN (assuming base icon is visually UP) */
}

.navbar .nav-item.dropdown.show > .nav-link.dropdown-toggle .dropdown-arrow-icon,
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle[aria-expanded="true"] .dropdown-arrow-icon {
    transform: rotate(0deg); /* Point arrow UPWARDS (back to base icon's visual state if default is 180deg) */
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Event Cards */
.event-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(227, 6, 19, 0.1);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-align: center;
    z-index: 2;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.event-img {
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.event-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.event-meta span {
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.event-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Campaign Cards */
.campaign-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(227, 6, 19, 0.1);
}

.campaign-img {
    height: 200px;
    object-fit: cover;
}

.campaign-progress {
    padding: 15px 20px 0;
}

.campaign-progress .progress {
    height: 10px;
    border-radius: 5px;
}

.campaign-progress .progress-bar {
    background-color: var(--primary-color);
}

.campaign-content {
    padding: 15px 20px 20px;
}

.campaign-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Mentorship Section */
.mentorship-step {
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Contact Section */
.contact-info {
    height: 100%;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p, .contact-item a {
    color: #666;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Footer Styles */
footer {
    position: relative;
}

.footer-logo {
    height: 60px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--shedesa-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--shedesa-red);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--shedesa-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom-links {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: var(--shedesa-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--shedesa-red);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .btn-lg {
        padding: 0.6rem 1.5rem;
    }
    
    .mentorship-content {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-buttons .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
}

/* Override Bootstrap Colors */
.text-primary {
    color: var(--shedesa-red) !important;
}

.bg-primary {
    background-color: var(--shedesa-red) !important;
}

.btn-outline-primary {
    color: var(--shedesa-red) !important;
    border-color: var(--shedesa-red) !important;
}

.btn-outline-primary:hover {
    background-color: var(--shedesa-red) !important;
    color: var(--shedesa-white) !important;
}

/* Custom Components */
.benefit-card {
    background-color: var(--shedesa-white);
    border: 1px solid var(--shedesa-red);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.1);
}

.benefit-icon {
    color: var(--shedesa-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Section Titles */
.section-title {
    color: var(--shedesa-black);
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
}

.btn-danger {
    background-color: var(--shedesa-red) !important;
    border-color: var(--shedesa-red) !important;
}

.btn-danger:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
}

.btn-outline-danger {
    color: var(--shedesa-red) !important;
    border-color: var(--shedesa-red) !important;
}

.btn-outline-danger:hover {
    background-color: var(--shedesa-red) !important;
    color: var(--shedesa-white) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Make navbar login and join buttons square, not pill */
.navbar .btn-login,
.navbar .btn-cta {
    border-radius: 5px !important;
    padding: 0.8rem 1.5rem !important;
}

html, body, .navbar, .container-fluid, .navbar-collapse {
    max-width: 100vw !important;
    overflow-x: hidden !important;
}