body {
    font-family: Arial, sans-serif;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

#services .card {
    border: none;
    margin-bottom: 20px;
}

footer p {
    margin: 0;
}

.hero {
    background: url('images/laptop-repair.jpg') no-repeat center center/cover;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

.hero .logo-r {
    height: 60px;
    margin-bottom: 1rem;
}

.service-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    height: 200px;
    object-fit: cover;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-section {
    background-color: #333;
    padding: 3rem 1rem;
}

.step-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.step-card img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.reviews-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 2rem;
}

.coverage,
.reviews {
    padding: 3rem 2rem;
    text-align: center;
}

.review-card .stars {
    color: #fbc02d;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-card span {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
}

.review-card {
    background: white;
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s;
}

.step-text {
    font-size: 1.2rem;
}

.btn-danger {
    padding: 12px 24px;
    font-size: 1.2rem;
    border-radius: 8px;
}

#services h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

#services .card-title {
    color: #dc3545;
}

#services .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

#services .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}