/* quityourtimeshare.com - Serious, Trustworthy Legal Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #333333;
    background-color: #f4f6f8;
}

/* Text Logo - Professional and Trustworthy */
.logo {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 1.7em;
    font-weight: 700;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: inline-block;
}

.logo span {
    color: #5dade2;
    font-weight: 400;
}

header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

nav {
    margin-top: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    transition: all 0.3s;
    border-radius: 4px;
}

nav a:hover {
    background: #5dade2;
    color: white;
}

main {
    padding: 3rem 0;
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 1.3rem;
}

h1 {
    font-size: 2.6em;
    border-bottom: 4px solid #5dade2;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2em;
    margin-top: 2.5rem;
    color: #34495e;
}

h3 {
    font-size: 1.5em;
    color: #5dade2;
}

p {
    margin-bottom: 1.3rem;
    color: #555555;
}

.card {
    background: white;
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #5dade2;
}

.alert-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.8rem;
    margin: 2rem 0;
    border-radius: 6px;
    border-left: 5px solid #ff9800;
}

.alert-box h3 {
    color: #ff9800;
    margin-top: 0;
}

.alert-box p {
    color: #856404;
}

.info-box {
    background: #d6eaf8;
    border: 2px solid #5dade2;
    padding: 1.8rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.info-box h3 {
    margin-top: 0;
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

footer p {
    color: #bdc3c7;
}

.contact-form {
    max-width: 650px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.8rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    color: #2c3e50;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #5dade2;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

button {
    background: #5dade2;
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

button:hover {
    background: #3498db;
    box-shadow: 0 4px 12px rgba(61, 152, 219, 0.3);
}

.steps-container {
    counter-reset: step-counter;
}

.step {
    counter-increment: step-counter;
    background: white;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    padding-left: 100px;
    min-height: 90px;
}

.step::before {
    content: counter(step-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(93, 173, 226, 0.3);
}

.step h3 {
    margin-top: 0;
    color: #2c3e50;
}

ul.checklist {
    list-style: none;
    padding-left: 0;
}

ul.checklist li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #ecf0f1;
}

ul.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5dade2;
    font-weight: bold;
    font-size: 1.3em;
}

.trust-badge {
    text-align: center;
    background: #34495e;
    color: white;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 6px;
}

.trust-badge h3 {
    color: #5dade2;
    margin-bottom: 1rem;
}

.trust-badge p {
    color: #ecf0f1;
}
