/* Extracted from index.html - inline styles */
body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
}
.hero-bg {
    background: linear-gradient(45deg, rgba(23, 43, 77, 0.9), rgba(29, 93, 155, 0.9)), url('https://placehold.co/1920x1080/000000/FFFFFF?text=Automation+Background') no-repeat center center;
    background-size: cover;
}
.nav-link {
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 2px solid transparent;
}
.nav-link:hover, .nav-link.active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}
.cta-button {
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #0ea5e9;
    margin: 1rem auto 0;
    border-radius: 2px;
}
.chart-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    max-height: 400px;
}
@media (min-width: 768px) {
    .chart-container {
        height: 400px;
    }
}
