* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {

    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
}

h1 {
    font-family: "opake", sans-serif;
    text-align: center;
    margin-bottom: 25px;
    color: #163913;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.card {
    background: #163913;
    border-radius: 28px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.5s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-9px);
}

.card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card-content {
    padding: 10px;
    color: #ffffff;
}

.container {
    text-align: center;
    margin-top: 10px;
}

.text-box {
    background-color: #163913;
    padding: 10px;
    color: #ffffff;
    max-width: 600px;
    margin: 20px auto;
    text-align:center;
    font-family: opake heavy;    
    background-color: #f4f4f4;
     font-style: normal; 
}

.card-container {
    display: flex; 
    justify-content: center; 
    gap: 10px; 
    border-radius: 38px; /* This property is not necessary for the container */
}

.card {
    background: #163913; 
    border-radius: 38px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
    width: 300px; 
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

.card-image {
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}

.card-content {
    padding: 25px; 
}

.card-content h3 {
    margin-bottom: 10px; 
    color: #ffffff; 
}

.card-content p {
    color: #000000; 
    line-height: 1.5;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%; 
    max-width: 700px; /* Maximum width of the modal image */
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff; /* White color for the close button */
    font-size: 40px; /* Size of the close button */
    font-weight: bold; /* Bold text */
    cursor: pointer; /* Pointer cursor on hover */

}
