.m-home {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}
.hero {
    background: linear-gradient(rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.8)), url('/test/images/court-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 15px;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 10px;
}
.hero h1 {
    font-size: 20px;
    margin: 0 0 8px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.hero p {
    font-size: 12px;
    max-width: 90%;
    margin: 0 auto;
}
.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}
.benefit-box {
    background-color: #fff;
    width: 100%;
    max-width: 260px;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}
.benefit-box:hover {
    transform: translateY(-2px);
}
.benefit-box h3 {
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.benefit-box p {
    font-size: 12px;
    color: #666;
    margin: 0;
}
.cta {
    padding: 10px;
    background-color: #1f2937;
    color: #fff;
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta h2 {
    font-size: 16px;
    margin: 0 0 8px;
    color: #ffffff;
}
.cta p {
    font-size: 12px;
    margin: 0 0 10px;
}
.cta-button, .back-button {
    display: block;
    width: 90%;
    background: #1f2937;
    color: #ffffff;
    font-weight: 700;
    padding: 8px;
    margin: 8px auto;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ffffff;
}
.cta-button:hover, .back-button:hover {
    background: #374151;
}
.form-section {
    padding: 10px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.form-section h3 {
    font-size: 14px;
    color: #1f2937;
    margin: 0 0 8px;
}
.form-section input {
    width: 100%;
    max-width: 220px;
    padding: 6px;
    margin: 4px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
}
.form-section .cta-button {
    width: 100%;
    max-width: 220px;
    margin-top: 8px;
    background: #6b7280;
}
.form-section .cta-button:hover {
    background: #4b5563;
}
.message {
    font-size: 12px;
    margin-top: 8px;
}
.message.success {
    color: #2ecc71;
}
.message.error {
    color: #e74c3c;
}
@media (max-width: 480px) {
    .hero h1 { font-size: 18px; }
    .hero p { font-size: 11px; }
    .benefit-box { max-width: 100%; }
    .cta h2 { font-size: 14px; }
    .cta-button, .back-button { padding: 5px 12px; font-size: 12px; }
}