/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    color: #333;
}

/* Hero Section */
.hero-section {
    background-image: url("/gainforchrist/images/2.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    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.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #ffcb70;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Testimonies Intro */
.testimonies-intro {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    color: #555;
}

/* Testimony Form Section */
.testimony-form-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9ff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimony-form-section h2 {
    color: #4a90e2;
    margin-bottom: 15px;
    text-align: center;
}

.testimony-form-section p {
    text-align: center;
    color: #777;
    margin-bottom: 20px;
}

.testimony-form-section label {
    font-size: 1rem;
    color: #333;
}

.testimony-form-section input,
.testimony-form-section textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.testimony-form-section button {
    width: 100%;
    padding: 12px;
    background-color: #4a90e2;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.testimony-form-section button:hover {
    background-color: #3a78c2;
}

/* Recent Testimonies Section */
.recent-testimonies {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.recent-testimonies h2 {
    color: #4a90e2;
    margin-bottom: 20px;
    text-align: center;
}

.testimony-list {
    list-style: none;
    padding: 0;
}

.testimony-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9ff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimony-item h3 {
    color: #4a90e2;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimony-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}

.testimony-item small {
    font-size: 0.9rem;
    color: #888;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    color: #4a90e2;
    text-decoration: none;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #4a90e2;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #4a90e2;
    color: #ffffff;
}

.success-message {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1rem;
    display: none; /* Hidden by default */
}

.success-message.visible {
    display: block;
}

.success-message.hidden {
    display: none;
}
