/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.hero-section {
    background-color: #990000;
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 0px;
    padding: 0 15px;
}

.hero-section h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.service-card {
    background-color: #990000;
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card img {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.service-card button {
    background-color: grey;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: #770000;
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) {
    .hero-section h3 {
        font-size: 2rem;
    }

    p {
        font-size: 1.1rem;
    }

    .services {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 15px;
    }

    .hero-section h3 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 0;
    }

    .service-card {
        padding: 15px;
        max-width: 100%;
    }

    .service-card img {
        max-width: 80px;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-card button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Small Mobile Responsive Styles */
@media (max-width: 480px) {
    .hero-section {
        padding: 25px 10px;
    }

    .hero-section h3 {
        font-size: 1.5rem;
    }

    .content-container {
        padding: 0 10px;
    }

    .services {
        gap: 15px;
    }

    .service-card {
        padding: 12px;
    }

    .service-card img {
        max-width: 70px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    .service-card button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}