/* Custom Styles */
.service-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: #007bff;
    box-shadow: 0 15px 30px rgba(0,123,255,0.2);
    text-decoration: none;
    color: inherit;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #007bff;
}

.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 80px 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 50px;
}

.form-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin: 20px 0;
}