.logo img {
    max-width: 100px;
}

/* Brand Colors */
:root {
    --brand-orange: #eaa133;
    --brand-blue: #1dbdbb;
    --brand-orange-hover: #d4921a;
    --brand-blue-hover: #17a5a3;
}

/* Primary Brand Color Overrides */
.btn-primary {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--brand-orange-hover);
    border-color: var(--brand-orange-hover);
    color: white;
}

.text-primary {
    color: var(--brand-blue) !important;
}

/* Navigation styling */
.navbar-brand:hover {
    opacity: 0.8;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--brand-orange) !important;
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-title.text-primary {
    color: var(--brand-blue) !important;
}

/* Hero section styling */
.hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-orange) 100%);
    color: white;
    padding: 4rem 0;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h2 {
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section styling */
section {
    padding: 4rem 0;
    position: relative;
}

/* Alternating section backgrounds with subtle patterns */
section:nth-child(even) {
    background-color: #f8f9fa;
}

section:nth-child(odd) {
    background-color: white;
}

/* Section dividers */
section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
    border-radius: 2px;
}

/* Special styling for specific sections */
.roles {
    background: linear-gradient(135deg, rgba(29, 189, 187, 0.05) 0%, rgba(234, 161, 51, 0.05) 100%);
    border-top: 1px solid rgba(29, 189, 187, 0.1);
    border-bottom: 1px solid rgba(234, 161, 51, 0.1);
}

.fractional {
    background-color: #f8f9fa;
    border-left: 5px solid var(--brand-blue);
    position: relative;
}

.fractional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue), transparent);
}

.packages {
    background: white;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    border-top: 2px solid var(--brand-orange);
}

.faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid var(--brand-blue);
    border-bottom: 3px solid var(--brand-orange);
}

/* Section headers */
section h2 {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--brand-orange);
}

/* Spacing between major content blocks */
.roles-cards-container,
.packages-cards-container {
    margin-top: 2rem;
    padding: 2rem 0;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

/* Container spacing improvements */
.container {
    max-width: 1200px;
}

/* Visual breathing room */
.faq-item:not(:last-child) {
    margin-bottom: 2rem;
}

.faq-item {
    border-left: 4px solid var(--brand-blue);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    border-left-color: var(--brand-orange);
    transform: translateX(5px);
}

/* Button styling for secondary actions */
.btn-secondary {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: white;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: var(--brand-blue-hover);
    border-color: var(--brand-blue-hover);
    color: white;
}

.btn-outline-light:hover {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

/* FAQ Section styling */
.faq-question {
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer link styling */
footer a:hover {
    color: var(--brand-orange) !important;
}

/* Mobile-friendly footer adjustments */
@media (max-width: 768px) {
    /* Remove fixed positioning on mobile for better UX */
    footer.fixed-bottom {
        position: relative !important;
        bottom: auto !important;
    }
    
    body {
        padding-bottom: 0 !important; /* Remove bottom padding when footer is not fixed */
    }
    
    /* Mobile section spacing */
    section {
        padding: 2.5rem 0;
    }
    
    section h2 {
        margin-bottom: 2rem;
        font-size: 1.75rem;
    }
    
    /* Reduce divider size on mobile */
    section:not(:last-child)::after {
        width: 60px;
        height: 2px;
    }
    
    .roles-cards-container,
    .packages-cards-container {
        margin-top: 1rem;
        padding: 1rem 0;
        border-radius: 10px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero h2 {
        font-size: 1.25rem;
    }
    
    footer .footer-cta h3 {
        font-size: 1.1rem; /* Smaller heading on mobile */
    }
    
    footer .btn {
        font-size: 0.875rem; /* Smaller buttons on mobile */
        padding: 0.375rem 0.75rem;
        width: 100%; /* Full width buttons on mobile */
        margin-bottom: 0.5rem;
    }
    
    footer .container {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    footer .row .col-lg-6,
    footer .row .col-lg-3 {
        margin-bottom: 1rem !important;
    }
    
    footer p.small {
        font-size: 0.75rem;
    }
    
    /* Stack buttons vertically on mobile */
    footer .d-flex.flex-wrap {
        flex-direction: column !important;
    }
}