* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.form-step {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.form-section {
    width: 50%;
    padding: 40px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.form-section h2 {
    text-align: center;
    color: #d80000;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #d80000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #a00000;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-row {
    display: flex;
}

.left-section {
    flex: 1;
    padding: 20px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
}

.right-section {
    flex: 1;
    padding: 20px;
}

.left-section h3,
.right-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
}

.left-section ul {
    list-style: none;
}

.left-section li {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.left-section li:hover {
    background-color: #f0f0f0;
}

.left-section li img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.right-section .amount {
    font-size: 20px;
    font-weight: bold;
    color: #242424;
    margin-bottom: 20px;
}

.right-section form {
    display: flex;
    flex-direction: column;
}

.right-section form input {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.right-section form button {
    padding: 12px;
    background: #007bff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.right-section form button:hover {
    background-color: #0056b3;
}

.image-section {
    width: 50%;
}

.image-section img {
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    object-fit: cover;
}

.buttons-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    gap: 20px;
}

.buttons-section .btn {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.buttons-section .btn:hover {
    background-color: #cc0000;
}

.payment-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 20px -5px 0;
}

.payment-policy {
    font-size: 16px;
    color: #333;
    width: 50%;
    padding: 0 5px;
}

.payment-button {
    width: 50%;
    padding: 0 5px;
}

.payment-policy a {
    text-decoration: none;
    color: #ff0000;
}

.form-button-download {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.download-btns {
    width: 100%;
    margin-bottom: 20px;
}


@media(max-width: 767px){
    .image-section {
        width: 100%;
    }
    .form-section {
        width: 100%;
        padding: 40px 10px;
    }
    .container {
        padding: 0 10px;
    }
    .popup-row {
        flex-wrap: wrap;
    }
    .left-section {
        flex: 0 0 100%;
    }
}
