/* General styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Background image */
#mainimg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* 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;
}

/* Reusable content sections */
.content-section {
    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);
}

.content-section h3 {
    color: #007bff;
}

/* 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;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    display: inline;
    margin: 0 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
