.join-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/home_image_8.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    font-size: 2.5rem;
    color: #00988c;
    margin-bottom: 20px;
}
.compare-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.compare-table thead {
    background: #333;
    color: white;
}
.text-highlight {
    color: #f86271;
    font-weight: bold;
}
.step-number {
    width: 40px;
    height: 40px;
    background: #00988c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 1.2rem;
}
.btn-join {
    background-color: #00988c;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}
.btn-join:hover {
    background-color: #007d73;
    color: white;
}