/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
}

/* Main Content */
main {
    margin-top: 80px;
    padding: 2rem 1rem;
}

section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
    text-align: center;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../images/chicago-hardwood-flooring-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
}

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

/* Benefits Section */
.benefits {
    background-color: #f8f9fa;
}

.benefits-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.benefits-text {
    flex: 1;
}

.benefits-image {
    flex: 1;
}

/* Types Section */
.types ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.types li {
    margin-bottom: 1rem;
}

.types-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.types-text {
    flex: 1;
}

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

/* Installation Process Section */
.installation-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.installation-text {
    flex: 1;
}

.installation-image {
    flex: 1;
}

/* Section Images */
.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.02);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.faq-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    text-align: center;
    background-color: #2c3e50;
    color: #fff;
}

.cta h2 {
    color: #fff;
}

.cta .cta-button {
    background-color: #fff;
    color: #2c3e50;
}

.cta .cta-button:hover {
    background-color: #f8f9fa;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-top: 1rem;
    line-height: 1.4;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Privacy Policy Page */
.privacy-policy {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.privacy-policy h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-policy h2 {
    color: #2c3e50;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.policy-content {
    line-height: 1.8;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-content .disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
}

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

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    nav {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    section {
        padding: 1.5rem;
    }

    .benefits-content,
    .installation-content {
        flex-direction: column;
    }

    .types-images {
        grid-template-columns: 1fr;
    }

    .section-image {
        margin: 1rem 0;
    }

    .privacy-policy {
        margin: 1rem;
        padding: 1.5rem;
    }

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

    .privacy-policy h2 {
        font-size: 1.3rem;
    }
}

/* Accessibility */
:focus {
    outline: 3px solid #e74c3c;
    outline-offset: 2px;
}

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

    body {
        color: #000;
    }

    section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
} 