html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(ellipse at 60% 20%, #e9f0fb 0%, #f6f8fa 70%, #e9f0fb 100%), url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="0.5" fill="%2399badd"/><circle cx="80" cy="20" r="0.5" fill="%2399badd"/><circle cx="20" cy="80" r="0.5" fill="%2399badd"/><circle cx="70" cy="70" r="0.5" fill="%2399badd"/><circle cx="30" cy="30" r="0.5" fill="%2399badd"/></svg>');
    background-repeat: repeat;
    background-size: cover, 120px 120px;
    color: #222;
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 1.2rem 0 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
}
nav {
    display: flex;
    gap: 2.5rem;
}
nav a {
    color: #3d5a80;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.07rem;
    padding: 0.3em 0.7em;
    border-radius: 5px;
    transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a.active {
    background: #3d5a80;
    color: #fff;
}
main {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    max-width: 600px;
    margin: 2.5rem 0 2rem 0;
    text-align: center;
}
h1 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #0a2a47;
}
h2 {
    color: #0a2a47;
    margin-top: 0;
}
h5 {
    font-size: 1.2rem;
    color: #3d5a80;
    margin-bottom: 2rem;
    font-weight: 500;
}
p {
    font-size: 1.06rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}
ul {
    text-align: left;
    margin: 1.5em 0 2em 2em;
}
a.email-link {
    display: inline-block;
    margin-top: 1.8rem;
    padding: 0.6em 1.3em;
    background: #3d5a80;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
a.email-link:hover {
    background: #0a2a47;
}
footer {
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.03);
    padding: 1.2rem 0 1.2rem 0;
    margin-top: auto;
    display: flex;
    justify-content: center;
}
footer nav {
    display: flex;
    gap: 2.5rem;
}
footer nav a {
    color: #3d5a80;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.07rem;
    padding: 0.3em 0.7em;
    border-radius: 5px;
    transition: background 0.18s, color 0.18s;
}
footer nav a:hover, footer nav a.active {
    background: #3d5a80;
    color: #fff;
}
/* SMS Consent Form Styles */
.consent-form-main {
    max-width: 650px;
    text-align: left;
}
.consent-form-main h1 {
    text-align: center;
}
.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0a2a47;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid #dde4ed;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus {
    outline: none;
    border-color: #3d5a80;
    box-shadow: 0 0 0 3px rgba(61, 90, 128, 0.15);
}
.required {
    color: #c0392b;
}
.checkbox-group {
    margin: 1.5rem 0;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #3d5a80;
    flex-shrink: 0;
}
.checkbox-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}
.checkbox-text a {
    color: #3d5a80;
}
.consent-details {
    background: #f6f8fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
.consent-details h3 {
    color: #0a2a47;
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
}
.consent-details h3:not(:first-child) {
    margin-top: 1.25rem;
}
.consent-details ul {
    margin: 0 0 0 1.25rem;
    padding: 0;
}
.consent-details li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}
.submit-btn {
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: #3d5a80;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    margin-top: 1.5rem;
}
.submit-btn:hover {
    background: #0a2a47;
}
.contact-info {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}
.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}
.contact-info a {
    color: #3d5a80;
}
.company-info {
    color: #888;
    font-size: 0.9rem !important;
}

/* Success Message Styles */
.success-message {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-radius: 12px;
    border: 2px solid #81c784;
}
.success-message h2 {
    color: #2e7d32;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.success-message h2::before {
    content: "\2713 ";
    color: #4caf50;
}
.success-message p {
    color: #33691e;
    margin-bottom: 1rem;
}
.back-home-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #3d5a80;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.back-home-btn:hover {
    background: #0a2a47;
}

@media (max-width: 700px) {
    main {
        padding: 1.2rem 0.7rem;
        margin: 1rem 0;
    }
    nav {
        gap: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    .consent-form-main {
        padding: 1.5rem 1rem;
    }
}
