/* Gator Legal Services - Dedicated Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #222222;
    background-color: #F5F5DC; /* Primary Beige */
    line-height: 1.6;
}

header {
    background-color: #222222;
    color: #F5F5DC;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 4px solid #A0522D; /* Sienna accent */
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    background-color: #333333;
    text-align: center;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #F5F5DC;
    text-decoration: none;
    padding: 0 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

nav a:hover {
    color: #A0522D;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    background-color: #FFFFFF;
    padding: 40px;
    margin-bottom: 30px;
    border: 2px solid #222222; /* Solid border like main site */
    box-shadow: 6px 6px 0px #A0522D; /* Stylized offset shadow */
}

h2 {
    text-align: center;
    color: #222222;
    text-transform: uppercase;
    border-bottom: 2px solid #222222;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* Service Grid */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.services-list li {
    background: #FFFAF0;
    padding: 20px;
    border: 1px solid #222222;
    text-align: center;
}

.services-list h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #A0522D;
}

/* Call to Action */
.call-to-action {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #222222;
    color: #F5F5DC;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #222222;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #F5F5DC;
    color: #222222;
}

footer {
    background-color: #222222;
    color: #F5F5DC;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form div {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #222222;
    background-color: #ffffff;
    color: #222222;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-container {
    text-align: center;
    margin-top: 20px;
}

.contact-form .btn {
    background-color: #222222;
    color: #F5F5DC;
    padding: 15px 40px;
    border: 2px solid #222222;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.contact-form .btn:hover {
    background-color: #F5F5DC;
    color: #222222;
}

/* Footer Link Styling */
.footer-backlink {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #A0522D; /* Sienna to match accents */
    text-decoration: none;
    font-weight: bold;
}

.footer-backlink:hover {
    text-decoration: underline;
    color: #F5F5DC;
}