.card {
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    font-family: 'Segoe UI', sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Elevated Card */
.card-elevated {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-elevated:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

/* Material card*/
.material-card {
    padding: 0;
    max-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
}

.material-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 8px;
}

.card-caption {
    color: #333;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

/* Filled Card */
.card-filled {
    background-color: #f0f4f8;
    color: #333;
    text-align: left;
}

/* Outlined Card */
.card-outlined {
    background-color: #fff;
    border: 1px solid #ccc;
}

/* Shared Elements */
.card-header {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-body {
    font-size: 1em;
    line-height: 1.6;
}

/* Card Styling */
.process-card {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

/* Header */
.process-card h3 {
    margin-bottom: 20px;
    font-size: 1.6em;
    text-align: center;
    color: #333;
}

/* Ordered List Styling */
.process-list {
    counter-reset: step;
    padding-left: 0;
    list-style: none;
}

.process-list li {
    counter-increment: step;
    position: relative;
    margin-bottom: 20px;
    padding-left: 48px;
    font-size: 1.1em;
    color: #444;
}

/* Number Circle */
.process-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: #2e7632;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 1em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Optional Hover Effect */
.process-list li:hover {
    color: #2e7632;
    font-weight: 500;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 10px 20px;
}

.section-title h2 {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2e7632;
    /* Material Blue */
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #2e7632;
    margin: 8px auto 0;
    border-radius: 2px;
}

.subtitle {
    font-size: 1.1em;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/*Gallery*/
.gallery-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.gallery-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-caption {
    padding: 8px 12px;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.centered-col {
    display: block;
    margin: 0 auto;
    float: none;
}
.card-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}