/* ==========================================================================
   CONSULTING PAGE SPECIFIC STYLES
   ========================================================================== */
 
/* Hero section for consulting page */
.hero {
    background: linear-gradient(135deg, #F5F5F5, #EEEEEE);
    padding: 8rem 0 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    background: linear-gradient(135deg, #1F1F1F, #1E3A8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #1F1F1F;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero ul li {
    font-size: 18px;
    font-weight: 400;
    color: #1F1F1F;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero ul li::before {
    content: '✓';
    color: #E53935;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Navigation uses global styles from styles.css */

/* Footer styling */
footer {
    background: #1F1F1F;
    color: white;
    padding: 3rem 0 2rem;
     
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #E53935;
    margin-bottom: 1rem;
}

.footer-content h4 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: white;
}

.footer-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-content ul li {
    margin-bottom: 0.5rem;
}

.footer-content ul a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-content ul a:hover {
    opacity: 1;
    color: #E53935;
}

.footer-content p {
    margin: 0.5rem 0;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero ul {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 