/* General styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #e8f8e8;
    color: #333;
    line-height: 1.6;
    text-align: right;
}

/* Hero section */
.hero-section {
    position: relative;
    width: 100%;
    height: auto;
}

.hero-image {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

/* Main content container */
.content-container {
    max-width: 800px;
    margin: 107px auto;
    padding: 20px;
    background-color: #f5f9f5;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
    color: #054d1f;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

h2 {
    color: #054d1f;
    margin-top: 20px;
    font-size: 1.4rem;
}

h3 {
    font-size: 30px;
    margin-bottom: 20px;
    background-color: #086060;
    color: white;
    text-align: center;
    margin-top: -2px;

}

/* List styling */
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: "•";
    color: #054d1f;
    position: absolute;
    left: 0;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Card image */
.card img {
    width: 100%;
    height: 191px;
    display: block;
}

/* Adjust font size for smaller screens */

@media (max-width: 1024px) {
    .content-container {
        
        padding: 15px;
        margin: 380px auto;
    }
    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }
    p{
        font-size: 30px;
        font-weight: 600;
    }

}

@media (max-width: 890px) {
    .content-container {
        
        padding: 15px;
        margin: 340px auto;
    }
    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }
    p{
        font-size: 30px;
        font-weight: 600;
    }

}
@media (max-width: 768px) {
    

    .content-container {
        
        padding: 15px;
        margin: 220px auto;
    }

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }
    p{
        font-size: 30px;
        font-weight: 600;
    }
}

/* Adjust layout for very small screens (e.g., smartphones) */
@media (max-width: 480px) {
    

    h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2rem;
    }

    ul li {
        padding-left: 15px;
    }

    ul li::before {
        left: -5px;
    }
    .hero-section {
        margin-top: 47px;
    }
    p{
        font-size: larger;
        font-weight: 600;
    }
    .content-container {
        
        padding: 15px;
        margin: 70px auto;
    }
}
