body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Banner styles */
.banner-container {
    padding: 20px 0;
}
.banner-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Tem section styles */
.tem-section {
    text-align: center;
    padding: 30px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.tem-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.tem-img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
}

/* Steps section styles */
.steps-container {
    padding: 30px 0;
}
.step-box {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
}
.step-box:hover {
    transform: translateY(-5px);
}
.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}
.step-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: #007bff;
}
.step-description {
    color: #666;
    font-size: 14px;
}

/* Form styles */
.form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}
.form-control, .form-select {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}
.btn-verify {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s;
}
.btn-verify:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.input-group-text {
    background-color: #f8f9fa;
}