/* Custom styles for AA Computer Consulting landing page */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600?text=Los+Angeles+IT+Consulting');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff; /* Ensure readability for SEO */
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #fff;
}

.hero .hero-logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
}

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

header h1 {
    font-size: 2rem;
    margin: 0;
}

.services {
    background: #f8f9fa;
}

.card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .hero-logo {
        width: 120px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}