<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Modern CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header &amp; Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.9;
}

.logo img {
    max-height: 60px;
    width: auto;
}

/* Images */
.hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.section-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

/* CTA Buttons */
.phone-button, .cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.phone-button:hover, .cta-button:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 4rem 1rem;
    text-align: center;
}

.hero h1 {
    margin-bottom: 2rem;
}

/* Sections */
section {
    padding: 4rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

/* Lists */
ol, ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 1rem;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section .cta-button {
    margin-top: 1rem;
    background-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 1rem;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

.footer-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #d35400;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        max-height: 50px;
    }

    section {
        padding: 2rem 1rem;
    }

    .hero-image {
        max-height: 300px;
    }

    .section-image {
        max-height: 250px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.5s ease-out;
}

/* Accessibility */
:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .cta-button, .phone-button {
        display: none;
    }

    body {
        color: black;
    }

    a {
        text-decoration: none;
        color: black;
    }

    .hero-image, .section-image {
        max-height: 300px;
    }
}

/* Policy Page Styles */
.policy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.policy-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-section h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 30px 0 15px;
    font-family: 'Playfair Display', serif;
}

.policy-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.policy-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li {
    color: #555;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.policy-section a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 20px;
    }

    .policy-section h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }
} </pre></body></html>