.fpt-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
}

.fpt-left {
    flex: 1;
}

.fpt-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 20px;
}

.fpt-title span {
    color: #ff6600;
}

.fpt-label {
    margin: 20px 0 10px;
}

.fpt-options {
    margin-top: 15px;
}

.fpt-option {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
}

.fpt-option input {
    margin-right: 10px;
}

.fpt-btn {
    margin-top: 25px;
    background: #ff6600;
    color: #ffffff !important;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.fpt-btn:hover {
    background: #e65c00;
}

.fpt-right {
    flex: 1;
    text-align: center;
}

.fpt-right img {
    max-width: 100%;
}

/* Responsive */
@media(max-width: 768px) {
    .fpt-container {
        flex-direction: column;
        text-align: center;
    }
}