/* Auxiliary Pages Styles for Huntibusiness */

/* Page Header */
.page-header {
    background-color: var(--white);
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-light);
}

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

.header-content .logo-section a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-content .logo {
    width: 40px;
    height: 40px;
}

.header-content .brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--electric-teal);
    margin: 0;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--midnight-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--electric-teal);
}

.nav-cta {
    background-color: var(--electric-teal);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: #00b894;
    transform: translateY(-2px);
}

/* Page Main Content */
.page-main {
    padding-top: 0;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--midnight-navy) 0%, #2a2b4a 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.last-updated {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-style: italic;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background-color: var(--light-gray);
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.2rem;
    color: var(--midnight-navy);
    margin-bottom: 30px;
    font-weight: 600;
}

.section-content h3 {
    font-size: 1.6rem;
    color: var(--midnight-navy);
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 600;
}

.section-content h4 {
    font-size: 1.3rem;
    color: var(--midnight-navy);
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.section-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.section-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--electric-teal);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Special Content Blocks */
.vision-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
}

.leadership-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
}

.tech-foundation-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
}

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

.vision-point {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--electric-teal);
}

.vision-point h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.vision-point p {
    margin: 0;
    font-size: 1rem;
}

/* Tech Features */
.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.tech-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.tech-feature h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--midnight-navy);
}

.tech-feature p {
    margin: 0;
    font-size: 1rem;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.cookie-type {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--electric-teal);
}

.cookie-type h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--midnight-navy);
    font-size: 1.2rem;
}

.cookie-type p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Information */
.contact-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border-left: 4px solid var(--electric-teal);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--electric-teal);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: var(--midnight-navy);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 12px;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--midnight-navy);
    margin-bottom: 25px;
    font-weight: 600;
}

/* Footer Updates for Auxiliary Pages */
.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--electric-teal);
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .dashboard-image {
        height: 250px;
    }
    
    .analytics-image {
        height: 150px;
    }
    
    .security-main-image {
        height: 250px;
    }
    
    .leadership-image {
        height: 200px;
    }
    
    .tech-foundation-image {
        height: 180px;
    }
    
    .vision-image {
        height: 120px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-nav {
        gap: 20px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-content h2 {
        font-size: 1.8rem;
    }
    
    .section-content h3 {
        font-size: 1.4rem;
    }
    
    .vision-points,
    .tech-features,
    .cookie-types {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dashboard-image {
        height: 200px;
    }
    
    .analytics-image {
        height: 120px;
    }
    
    .security-main-image {
        height: 200px;
    }
    
    .leadership-image {
        height: 150px;
    }
    
    .tech-foundation-image {
        height: 150px;
    }
    
    .vision-image {
        height: 100px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .section-content h2 {
        font-size: 1.6rem;
    }
    
    .section-content h3 {
        font-size: 1.3rem;
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .header-content .brand-name {
        font-size: 1.5rem;
    }
    
    .header-content .logo {
        width: 35px;
        height: 35px;
    }
}