/* ===== SHARED PAGE STYLES ===== */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px 120px;
    color: #1e293b;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.content-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.4);
}

.content-card h2 {
    color: #0ea5e9;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-card h3 {
    color: #0284c7;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.content-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-card ul {
    color: #475569;
    line-height: 1.6;
    margin-left: 20px;
}

.content-card li {
    margin-bottom: 8px;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link a:hover {
    color: #0284c7;
}

.navigation-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.nav-link {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.nav-link.secondary {
    background: linear-gradient(135deg, #10b981, #059669);
}

.nav-link.tertiary {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.nav-link.quaternary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.nav-link.quinary {
    background: linear-gradient(135deg, #d946ef, #c026d3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .page-container {
        padding: 80px 15px 100px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .navigation-links {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 15px;
    }
}

/* ===== SPECIALTY CARDS ===== */
.highlight-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(56, 189, 248, 0.05));
    border: 2px solid rgba(14, 165, 233, 0.3);
}

.feature-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.tech-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.05));
    border: 2px solid rgba(249, 115, 22, 0.3);
}

.innovation-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.service-card {
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.1), rgba(192, 38, 211, 0.05));
    border: 2px solid rgba(217, 70, 239, 0.3);
}
