body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: white;
    line-height: 1.4;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.column-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.column-img {
    width: 52px;
    height: 122px;
}

.title-img {
    width: 85%;
}

.mobile-preview {
    float: right;
    margin: 0 0 20px 20px;
    width: 214px;
    height: 176px;
}

.main-heading {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.content-section {
    margin-bottom: 20px;
    text-align: justify;
}

.magic-words {
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
    color: #000;
    text-align: center;
    margin: 20px 0;
}

.emphasis {
    font-style: italic;
    text-decoration: underline;
    font-weight: normal;
}


.accident {
    float: left;
    margin: 0 20px 20px 0;
    width: 35%;
}

.courthouse {
    float: right;
    margin: 0px 20px 20px 20px;
    width: 25%;
    
}


.final-emphasis {
    font-weight: bold;
    text-decoration: underline;
    margin: 20px 0;
}

.signup-cta {
    font-weight: bold;
    text-decoration: underline;
    color: #0066cc;
    margin: 20px 0;
}

.signup-link {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

.clearfix {
    clear: both;
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    text-align: center;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
}

h2 {
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"], 
input[type="email"], 
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus {
    border-color: #007bff;
    outline: none;
}

.suggestions {
    background: #e7f3ff;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
}

.suggestions h3 {
    margin-top: 0;
    color: #007bff;
}

.suggestions ul {
    margin: 10px 0;
}

.suggestions li {
    margin: 8px 0;
}

.emergency-contact {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.emergency-contact h3 {
    margin-top: 0;
    color: #dc3545;
}

.submit-btn {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #0056b3;
}

.submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.status-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    display: none;
}

.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}