/* General styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/img/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 20px;
    font-size: 24px;
    font-weight: bold;
}

/* Main content box */
.pgcont {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    margin: 60px auto;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pgcont h2 {
    color: #007bff;
    text-align: center;
}

/* Service Cards */
.service-card {
    background: #fff;
    padding: 20px;
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: #007bff;
    font-size: 22px;
    margin-bottom: 10px;
}

/* Call-to-Action Section */
.cta-section {
    text-align: center;
    background: #007bff;
    color: #fff;
    padding: 40px 20px;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #007bff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.cta-button:hover {
    background: #f1f1f1;
}
