body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f9fbfd;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
    font-size: 1.2rem;
}

.row .col-12 .text-center{
    font-size:0.9rem ;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto;
    border-radius: 2px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 60px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center bottom;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.hero-section p {
    font-size: 1.0rem;
    max-width: 800px;
    margin: 0 auto 25px;
    opacity: 0.9;
}

.transfer-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.transfer-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 350px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.transfer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.transfer-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.transfer-card h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
}

.transfer-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-section {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    border-top: 4px solid var(--primary-color);
}

.form-section h3 {
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.form-section p{
    font-size: 1rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.required:after {
    content: " *";
    color: red;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .transfer-options {
        flex-direction: column;
        align-items: center;
    }

    .transfer-card {
        width: 100%;
        max-width: 350px;
    }
}