
  

h1 {

    font-size: 2.2rem;
    color: #ea8a15;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

h2, h3 {
    font-size: 1.1rem;
    color: #e55f33;
    margin-top: 0px;
}



@media (max-width: 600px) {
    h1 {
      font-size: 1.4rem;
    }

    h2 {
      font-size: 1.4rem;
    }

    h3 {
      font-size: 1.2 rem;
      
    }
  }

.card {
    background: #ffffffcc; /* slight transparency */
    border: 2px solid #2e7d32;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 100, 0, 0.2);
    padding: 20px;
    margin: 0px;
}

button, .btn {
    background: #2e7d32 !important;
    color: white !important;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button:hover, .btn:hover {
    background: #1b5e20 !important;
}



body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    text-align: center;
}

.title {
    margin: 20px;
    color: #2e7d32;
}

.steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #fff;
    border: 2px solid #2e7d32;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

input, button {
    margin: 8px 0;
    padding: 10px;
    width: 90%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #2e7d32;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #1b5e20;
}

/* Cyclothon CTA Button */
.cta-container {
    text-align: center;
    margin: 40px 0;
}

.cta-link {
    display: inline-block;
    padding: 15px 30px;
   background: linear-gradient(to right, #ff6a00, #ff9500);

    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.cta-link::before {
    content: "🚴";
    margin-right: 10px;
}

.cta-link:hover {
    background: linear-gradient(to right, #1b5e20, #1b5e20);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}