/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/4.jpg");
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffcb70; /* Golden accent */
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
}

/* Useful Links Section */
.useful-links-section {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
}

.useful-links-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.useful-links-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.useful-links-list {
    list-style: none;
    padding: 0;
}

.useful-links-list li {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.useful-links-list li:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.useful-links-list a {
    color: #007bff;
    text-decoration: none;
    font-size: 1.2rem;
}

.useful-links-list a:hover {
    text-decoration: underline;
}

.useful-links-list p {
    margin-top: 0.5rem;
    color: #555;
}
