body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.mobile-container {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 24px;
}

header {
    text-align: center;
    margin-bottom: 24px;
}

.header-logo {
    width: 100px; /* Adjust size as needed */
    margin-bottom: 16px;
}

.logo {
    width: 80px;
    margin-bottom: 16px;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

p {
    font-size: 1rem;
    color: #666;
    margin: 8px 0 0;
}

.plan-selection {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.plan-option {
    flex: 1;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option.selected {
    border-color: #3d4daa;
    background-color: #f0f2ff;
}

.plan-option h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.plan-option .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3d4daa;
    margin-top: 8px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 8px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

input[type="text"], input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-send {
    width: 100%;
    padding: 16px;
    background-color: #3d4daa;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-send:hover {
    background-color: #2d3a85;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    max-width: 90%;
}

.modal h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.modal p {
    margin-bottom: 24px;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-accept, .btn-decline {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-accept {
    background-color: #3d4daa;
    color: white;
}

.btn-decline {
    background-color: #e2e8f0;
    color: #333;
}

.business-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.business-item {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #e2e8f0;
}

.business-item:last-child {
    border-bottom: none;
}

.business-item:hover {
    background-color: #f0f2ff;
}

.terms-content {
    padding-top: 24px;
}

.add-new-section {
    margin-top: 24px;
    text-align: center;
}

.btn-link {
    background: none;
    border: none;
    color: #3d4daa;
    font-weight: 600;
    cursor: pointer;
}

.hidden {
    display: none;
}

#add-new-form {
    margin-top: 16px;
}

.associate-discount {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.associate-info {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    margin-bottom: 24px;
}

.continue-button {
    width: 100%;
    padding: 16px;
    background-color: #3d4daa;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 24px;
}

.continue-button:hover {
    background-color: #2d3a85;
}