@charset "UTF-8";
/* CSS Document */

/* Base Styles */
:root {
    --red: #ee0a24;
    --dark-red: #800000;
    --dark-grey: #525252;
    --light-grey: #EEEEEE;
    --black: #000;
    --white: #fff;
    --font-size-base: 16px;
    --font-size-large: 1.25rem;
    --font-size-larger: 1.5rem;
    --font-size-small: 0.875rem;
    --font-size-smaller: 0.75rem;
}

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

body {
    font-family: "Snippet", 'Arial', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    margin-bottom: .5rem;
	margin-top: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--dark-red);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Snippet', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--black);
    text-align: center;
}

.desktop-nav {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    font-weight: bold;
    gap: 1.5rem;
}

.desktop-nav a {
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.desktop-nav a:hover {
    color: var(--red);
}
.desktop-nav a:visited {
    color: var(--red);
}

.text-size-controls {
    display: flex;
    gap: 0.25rem;
}

.text-size-controls button {
    background-color: var(--red);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-size-controls button:hover {
    background-color: var(--dark-red);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--light-grey);
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    color: var(--red);
    border-bottom: 1px solid var(--white);
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    background-color: var(--white);
    padding: 3rem 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.hero-content .phone {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--red);
}

.hero-image {
    text-align: center;
}

.logo-placeholder {
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Services Section */
.services-header {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.services-header h2 {
    color: var(--white);
}

.services-grid-section {
    background-color: var(--white);
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-column ul {
    list-style-type: none;
}

.services-column li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.services-column li:before {
    content: "•";
    color: var(--red);
    position: absolute;
    left: 0;
}

/* Footer */
footer {
    background-color: var(--light-grey);
    color: var(--black);
    padding: 2rem 0 1rem;
    border-top: 1px solid #d0d0d0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column a {
    color: var(--red);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--dark-red);
}

.footer-column p, .footer-column address {
    font-size: 0.75rem;
    color: #888888;
    line-height: 1.2;
    padding-bottom: 20px;
}

.affiliate-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.affiliate-logo {
    display: block;
    text-align: center;
    max-width: 45%;
}

.affiliate-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.back-to-top {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.back-to-top:hover {
    background-color: var(--dark-red);
}

/* T&C Page Specific Styles */
.content-section {
    padding: 3rem 0;
}

.terms-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 100%;
    margin: 0 auto;
}

.terms-main {
    max-width: 100%;
}

.terms-sidebar {
    background-color: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
}

.terms-sidebar h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.terms-sidebar ul {
    list-style-type: none;
}

.terms-sidebar li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.terms-sidebar li:before {
    content: "•";
    color: var(--red);
    position: absolute;
    left: 0;
}

.terms-content h1 {
    margin-bottom: 1rem;
}

.published-date {
    color: var(--dark-grey);
    margin-bottom: 2rem;
    font-style: italic;
}

.terms-content ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.terms-content li {
    margin-bottom: .5rem;
}
.terms-content p {
    margin-bottom: .5rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-column:nth-child(3) {
        display: none;
    }
    
    .terms-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        text-align: center;
        flex-grow: 1;
    }

    .header-container {
        justify-content: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .terms-sidebar {
        order: -1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .affiliate-logos {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .affiliate-logo {
        max-width: 120px;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}