body {
    background: linear-gradient(135deg, #eaeaea 60%, #d4f3ef 100%);
    font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
    color: #333;
    margin: 0;
    font-size: 16px;
}

header {
    display: flex;
    align-items: center;
    padding: 18px 32px;
    background: #cfcfcf;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

header img {
  border-radius: 12px;
  margin-right: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background-color: #ffffff; /* Change this to your desired color */
}

header h1 {
    flex: 1;
    font-size: 2.1em;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0da832;
    margin: 0;
    text-align: left;
}

main {
    max-width: 1000px;
    margin: 36px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 28px 24px 28px;
}

main p {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 32px;
    color: #222;
}

.grid_container_footer {
    display: flex;
    justify-content: space-around;
    gap: 24px;
    margin-top: 18px;
}


.footer-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    padding: 18px 10px 10px 10px;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    background: #f6f6f6;
    color: inherit;
    text-decoration: none;
    text-align: center;
}

.footer-card-link:hover {
    box-shadow: 0 6px 18px rgba(13,168,50,0.12);
    transform: translateY(-4px) scale(1.04);
}

.footer-card-link i {
  margin-bottom: 8px;
  color: #0da832;
  transition: color 0.2s;
}

.footer-card-link:hover i {
  color: #097c23;
}

h5 {
    margin-top: 0.5em;
    font-size: 1em;
    color: #0da832;
    font-weight: 500;
    letter-spacing: 0.5px;
}

footer {
    font-family: 'Georgia', serif;
    text-align: center;
    font-size: 0.95em;
    color: #888;
    margin-top: 38px;
    padding-bottom: 18px;
}

footer a {
    color: #0da832;
    text-decoration: none;
    border-bottom: 1px dotted #0da832;
    transition: color 0.2s, border-bottom 0.2s;
}

footer a:hover {
    color: #097c23;
    border-bottom: 1px solid #097c23;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    main {
        max-width: 98vw;
        padding: 18px 8px;
    }
    .grid_container_footer {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .grid_container_footer div {
        width: 90vw;
        max-width: 320px;
    }
    header {
        flex-direction: column;
        text-align: center;
        padding: 14px 8px;
    }
    header img {
        margin: 0 0 12px 0;
    }
    header h1 {
        text-align: center;
        font-size: 1.5em;
    }
}