﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Buttons - Primary Green */
.submit2 {
    width: 100%;
    height: 40px;
    background-color: #0b6623; /* Main green */
    line-height: 40px;
    text-align: center;
    font-size: 17px;
    margin: 2px 0;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.95;
}

    .submit2:hover {
        background-color: #1e8449; /* Hover green */
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

/* Buttons - Secondary Green */
.submit3 {
    width: 100%;
    height: 40px;
    background-color: #1e8449; /* Slightly lighter green for variety */
    line-height: 40px;
    text-align: center;
    font-size: 17px;
    margin: 2px 0;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.95;
}

    .submit3:hover {
        background-color: #0b6623; /* Dark green on hover */
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    }

/* Headings */
h2 {
    color: #0b6623; /* Dark green headings */
    font-weight: 600;
}
