* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    position: relative;
}

.header-banner {
    background-color: #3e4a59;
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    margin: 10px;
}

.header-banner h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

.main-content {
    padding: 20px 15px;
    text-align: center;
}

.text-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.discount-text {
    font-size: 18px;
    color: #8B4513;
    font-weight: bold;
    margin-bottom: 20px;
}

.bike-image {
    margin: 20px 0;
}

.bike-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.features {
    text-align: left;
    margin: 20px 0;
    padding: 0 15px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.check {
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    width: 20px;
}

.main-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin: 20px 0;
    line-height: 1.2;
    width: 280px;
    height: 70px;
}

.main-button:hover {
    background-color: #45a049;
}

.timer-section {
    margin: 20px 0;
}

.timer-section p {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.timer {
    font-size: 28px;
    color: #4CAF50;
    font-weight: bold;
    font-family: monospace;
}

footer {
    background-color: #2c2c2c;
    color: white;
    padding: 20px 15px;
    text-align: center;
    margin-top: 30px;
}

.company-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.company-info p {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.action-text {
    font-weight: bold;
    margin: 10px 0 !important;
}

.privacy-link {
    color: #4CAF50;
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

.copyright p {
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-content input[type="text"],
.modal-content input[type="tel"] {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.modal-content input[type="text"]:focus,
.modal-content input[type="tel"]:focus {
    border-color: #4CAF50;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    margin: 8px 0;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-container label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.submit-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 8px;
}

.submit-button:hover {
    background-color: #c0392b;
}

.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px 15px;
    text-align: center;
    background-color: white;
}

.success-icon {
    width: 70px;
    height: 70px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.success-icon::before {
    content: "✓";
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.success-title {
    font-size: 28px;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.2;
}

.success-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.3;
}

.return-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.return-button:hover {
    background-color: #45a049;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top: 2px solid white;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    .header-banner h1 {
        font-size: 20px;
    }
    
    .text-section h2 {
        font-size: 18px;
    }
    
    .main-button {
        width: 250px;
        padding: 15px 30px;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 8% auto;
    }
} 