.developer-credit {
    text-align: center;
    font-size: 0.85em;
    color: #ccc;
    margin-top: 10px;
}

.developer-credit a {
    color: #fbbf24;
    text-decoration: none;
}

.developer-credit a:hover {
    text-decoration: underline;
}
/* ==========================================================================
   GLOBAL RESET.....
========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}


/* ==========================================================================
   NAVIGATION BAR (Top Bar)
========================================================================== */
#tabs-top {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0);
    z-index: 10;
}

/* Pages Navigation (Green Background) */
#tabs-top1 {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #004225;
    z-index: 10;
}

/* Logo & Brand */
.logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-title img {
    height: 60px;
    width: auto;
    padding-left: 5px;
}

.logo-title span {
    font-size: 1.5em;
    font-weight: bold;
    color: green;
}

/* Navigation Links */
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fbbf24;
}


/* ==========================================================================
   HERO SECTION
========================================================================== */
#main-home {
    position: relative;
    text-align: center;
    color: white;
}

#main-home img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.4);
    /* darken */
}

/* Hero Text */
.main-home-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px 60px;
    border-radius: 12px;
    max-width: 90%;
}

.main-home-text h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.main-home-text p {
    font-size: 1.3em;
    line-height: 1.6;
}


/* ==========================================================================
   HERO BUTTONS
========================================================================== */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    background-color: #e74504;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hero-buttons .btn:hover {
    background-color: #e0a800;
}


/* ==========================================================================
   MOBILE MENU ICON (Hamburger)
========================================================================== */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 20;
}


/* ==========================================================================
   SIDEBAR (Mobile Navigation)
========================================================================== */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    background-color: rgba(0, 66, 37, 0.95);
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.sidebar a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 1.2em;
    color: white;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.sidebar .closebtn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px;
}


/* ==========================================================================
   RESPONSIVE DESIGN (Mobile Styles)
========================================================================== */
@media screen and (max-width: 768px) {

    #tabs-top,
    #tabs-top1 {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .nav-links {
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .main-home-text {
        padding: 20px;
    }

    .main-home-text h1 {
        font-size: 2em;
    }

    .main-home-text p {
        font-size: 1em;
    }

    .menu-icon {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 80%;
        text-align: center;
    }
}


/* ==========================================================================
   ABOUT PAGE CONTENT STYLES
========================================================================== */

/* Page Content Wrapper */
.page-content {
    padding-top: 80px;
    /* Space for fixed navbar */
}

/* Page Header */
.page-header {
    background-color: #004225;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2em;
}

/* Standard Section */
.section {
    background-color: #ffffff;
    padding: 60px 20px;
    margin: 20px auto;
    max-width: 1000px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.section h2 {
    color: #004225;
    margin-bottom: 15px;
}

.section p {
    font-size: 1.1em;
    line-height: 1.7;
}

/* Alternating Section */
.section-alt {
    background-color: #eaf5f0;
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 8px;
}

.section-alt h2 {
    color: #004225;
}

.section-alt p {
    font-size: 1.1em;
    line-height: 1.7;
}

/* Bullet Styling */
.section ul,
.section-alt ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.section ul li,
.section-alt ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}


/* ==========================================================================
   ACCORDION STYLES
========================================================================== */
.accordion-btn {
    background-color: #004225;
    color: white;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 6px;
    margin: 10px 0;
}

.accordion-btn:hover {
    background-color: #02663b;
}

.accordion-panel {
    padding: 0 20px 20px 20px;
    background-color: #f9f9f9;
    display: none;
    overflow: hidden;
    border-radius: 0 0 6px 6px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}


/* ==========================================================================
   MEET THE TEAM SECTION
========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #004225;
    border-radius: 8px;
}

.team-member h3 {
    margin-bottom: 5px;
    color: #004225;
}

.team-member p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.4;
}

@media screen and (min-width: 768px) {
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* ==========================================================================
   CONTACT PAGE CONTENT STYLES
========================================================================== */

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.contact-left,
.contact-right {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.contact-left h2,
.contact-right h2 {
    color: #004225;
}

.contact-left p,
.contact-right p {
    font-size: 1.1em;
}

.contact-right form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

button[type="submit"] {
    background-color: #c3922e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

button[type="submit"]:hover {
    background-color: #b37f10;
}


/* ==========================================================================
   FOOTER STYLES
========================================================================== */

.footer {
    background-color: #004225;
    color: white;
    padding: 60px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 10px;
}

.footer-column input {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #004225;
    border-radius: 4px;
}

.footer-column button {
    margin-top: 10px;
    width: 100%;
    background-color: #c3922e;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.footer-column button:hover {
    background-color: #a4731e;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer img {
    margin-bottom: 10px;
}

footer p {
    font-size: 0.9em;
}

footer .copyright {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85em;
    color: #ccc;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.3em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fbbf24;
}


/* ==========================================================================
   EVENTS PAGE STYLES
========================================================================== */

/* Events Header */
.events-header {
    background-color: #004225;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
}

.events-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Layout Wrapper */
.events-layout {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    flex-wrap: wrap;
}

/* Sidebar (Form Section) */
.events-sidebar {
    flex: 0 0 280px;
    background-color: #e6f4ea;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 100, 50, 0.1);
    height: fit-content;
}

.events-sidebar h3 {
    margin-bottom: 1rem;
    color: #004225;
}

.events-sidebar form {
    display: flex;
    flex-direction: column;
}

.events-sidebar label {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.events-sidebar input,
.events-sidebar select {
    padding: 0.5rem;
    margin-top: 0.25rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.events-sidebar button {
    margin-top: 1.2rem;
    padding: 0.6rem;
    background-color: #004225;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Upcoming Events */
.upcoming-events {
    margin-bottom: 2rem;
}

.upcoming-events h3 {
    color: #004225;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.upcoming-item {
    display: block;
    background-color: #f5fff5;
    border-left: 4px solid #00b359;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #004225;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.upcoming-item:hover {
    background-color: #e0f5e6;
}


/* ==========================================================================
   EVENTS MAIN GRID SECTION
========================================================================== */

.events-main {
    flex: 1;
}

.events-main h2 {
    font-size: 2rem;
    color: #004225;
    margin-bottom: 1.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: scale(1.02);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-card h3 {
    margin: 1rem;
    color: #004225;
}

.event-card p {
    margin: 0 1rem 1rem;
    font-size: 0.95rem;
    color: #444;
}

.event-card a {
    margin: 0 1rem 1rem;
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #006b3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.event-card a:hover {
    background-color: #c3922e;
}

/* ==========================================================================
   EVENTS PAGE RESPONSIVE
========================================================================== */
@media (max-width: 768px) {
    .events-layout {
        flex-direction: column;
    }

    .events-sidebar {
        width: 100%;
    }
}

/* ==========================================================================
   GET INVOLVED PAGE STYLES
========================================================================== */

/* --- Grid of Ways to Get Involved (Volunteer, Partner, Member) --- */
.involve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.involve-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.involve-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.involve-card h3 {
    color: #004225;
    margin-bottom: 10px;
}

.involve-card p {
    color: #555;
    font-size: 1em;
    margin-bottom: 20px;
}


/* --- Volunteer Section with Sidebar Form --- */
.volunteer-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.volunteer-info {
    flex: 1;
    min-width: 300px;
}

.volunteer-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.volunteer-info li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Volunteer Form Styles */
.volunteer-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.volunteer-form input,
.volunteer-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

.volunteer-form button {
    background-color: #004225;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.volunteer-form button:hover {
    background-color: #c3922e;
}

.btn {
    display: inline-block;
    background-color: #004225;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-size: 1em;
}

.btn:hover {
    background-color: #c3922e;
}

/* --- Impact Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}


/* --- CTA Footer Section --- */
.cta-footer {
    text-align: center;
    padding: 60px 20px;
    background-color: #004225;
    color: white;
    border-top: 1px solid #ddd;
}

.cta-footer h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-footer p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ddd;
}

.cta-footer .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-footer a.btn {
    background-color: #c3922e;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-footer a.btn:hover {
    background-color: #a4731e;
}

.cta-footer small {
    display: block;
    margin-top: 20px;
    color: #ccc;
    font-size: 0.95em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.footer {
    background-color: #ffffff;
    color: #004225;
}

.footer a {
    color: #004225;
}

.footer a:hover {
    color: #c3922e;
}

/* ==========================================================================
   PROJECTS PAGE STYLES
========================================================================== */

/* Projects Header */
.projects-header {
  background-color: #004225;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.projects-header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.projects-header p {
  font-size: 1.2em;
}

/* Projects Grid Layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Project Card */
.project-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

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

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

.project-card-content {
  padding: 20px;
}

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

.project-card-content p {
  color: #555;
  font-size: 1em;
  line-height: 1.5;
}

/* Progress Bar Section */
.project-stats {
  margin-top: 40px;
}

.stat-bar {
  margin-bottom: 20px;
}

.stat-bar h4 {
  margin-bottom: 5px;
  color: #004225;
}

.progress-bar {
  width: 100%;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
  height: 20px;
}

.progress-fill {
  height: 100%;
  background-color: #00b359;
  text-align: right;
  padding-right: 10px;
  color: white;
  font-size: 0.85em;
  line-height: 20px;
}

/* Projects CTA Footer (optional enhancement) */
.projects-cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #004225;
  color: white;
  margin-top: 40px;
}

.projects-cta h2 {
  margin-bottom: 15px;
}

.projects-cta a.btn {
  margin-top: 20px;
  display: inline-block;
}

/* ========================================================================== */
/* IMPACT SECTION */
/* ========================================================================== */
/* ===============================
   IMPACT SECTION STYLES
================================= */
.impact-section .impact-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  
}

.impact-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #004225;
  margin-bottom: 30px;
}

.impact-slider-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px 40px;
  background-color: #fff; /* Or use a color that matches your theme */
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.impact-slider {
  display: flex;
  flex-direction: column;
  position: relative;
}

.impact-slide {
  display: none;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.impact-slide.active {
  display: flex;
  animation: fade 0.8s ease-in-out;
}

.impact-text,
.impact-image {
  flex: 1;
  padding: 10px;
}

.impact-text h3 {
  color: #004225;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.impact-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.impact-image {
  flex: 1;
  min-width: 280px;
}

.impact-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.impact-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 66, 37, 0.7);
  color: white;
  width: 100%;
  padding: 20px;
}

.impact-caption h3 {
  margin-bottom: 5px;
}

/* Dot Indicators */
.impact-dots {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 10px;
}

.impact-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.impact-dots .dot.active {
  background-color: #004225;
}

/* Fade animation */
@keyframes fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .impact-slide {
    flex-direction: column;
  }

  .impact-image img {
    height: auto;
  }

  .impact-text h3 {
    font-size: 1.3rem;
  }

  .impact-text p {
    font-size: 1rem;
  }
}






/* ========================================================================== */
/* INVOLVE CARDS SECTION */
/* ========================================================================== */
.involve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.involve-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.involve-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}

.involve-card h3 {
  color: #004225;
  margin-bottom: 10px;
}

.involve-card p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

/* ========================================================================== */
/* BUTTON STYLE */
/* ========================================================================== */
.btn {
  display: inline-block;
  background-color: #004225;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
}

.btn:hover {
  background-color: #c3922e;
}

/* ========================================================================== */
/* PARTNERS FOOTER SECTION */
/* ========================================================================== */
.white-footer {
  background-color: #ffffff;
  color: #004225;
  padding: 20px 20px 30px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.footer-partners h2 {
  color: #004225;
  margin-bottom: 10px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  margin-top: 30px;
}

.partner-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.partner-card img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
}

/* ========================================================================== */
/* DEVELOPER CREDIT */
/* ========================================================================== */
.developer-credit {
  margin-top: 10px;
  font-size: 0.85em;
  color: #888;
}

.developer-credit a {
  color: #fbbf24;
  text-decoration: none;
}

.developer-credit a:hover {
  text-decoration: underline;
}
