
.hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 0;
        }

.section-card {
            transition: transform 0.3s ease;
            border: none;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

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

.benefit-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.navbar-brand {
    font-weight: 700;
    color: #667eea !important;
}

footer {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 60px;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;


    margin-right: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #764ba2;
    transform: translateY(-3px);
}

.error input, .error select {
    border: 2px solid red;
    background-color: #ffe6e6;
}

.errorlist {
    color: red;
    margin: 5px 0;
    padding-left: 0;
    list-style: none;
}











