body {
    font-family: Arial, sans-serif;
    background-color: #386d46;
    margin: 0;
    color: #2f3e2f;
}

/* Header */
header {
    background-color: #2f6f73;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Navigation */
nav {
    text-align: center;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #2f6f73;
}

nav a {
    color: white;
    margin: 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #f7d98c;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
    text-align: center;
    color: #2f6f73;
    font-family: Georgia, serif;
}

/* Sections */
section {
    background-color: #f4efe3;
    margin: 40px auto;
    padding: 40px;
    width: 85%;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 3px solid #c8a96a;
}

/* Images */
img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Paragraphs */
p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

/* Cards */
.card-container {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 18rem;
    background-color: #fff8e8;
    border: 2px solid #c8a96a;
    border-radius: 20px;
    overflow: hidden;
}

/* Card Images */
.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background-color: #386d46;
    border-color: #386d46;
    border-radius: 30px;
}

/* Footer */
footer {
    background-color: #2f6f73;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}
section img {
    margin-top: 20px;
    margin-bottom: 20px;
}