/* Westchester Office Cleaning Pros - Global Styles */
/* Mobile-first, professional, clean design optimized for readability */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 16px;
}

/* Navigation */
nav {
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
    font-size: 14px;
    line-height: 1.8;
}

nav a {
    color: #0066cc;
    text-decoration: none;
    padding: 0 6px;
    display: inline-block;
}

nav a:hover,
nav a:focus {
    text-decoration: underline;
    color: #004499;
}

/* Typography - optimized for readability */
h1 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    margin-top: 8px;
}

h2 {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 32px;
    margin-bottom: 16px;
}

p {
    margin-bottom: 16px;
    max-width: 70ch;
}

ul {
    margin-left: 24px;
    margin-bottom: 20px;
    padding-left: 8px;
}

li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: #004499;
}

a[href^="tel:"] {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
}

a[href^="tel:"]:hover {
    text-decoration: underline;
}

/* Horizontal Rules */
hr {
    border: none;
    border-top: 1px solid #d0d0d0;
    margin: 32px 0;
}

/* Footer */
footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
    font-size: 14px;
    text-align: center;
    color: #666666;
    line-height: 1.8;
}

footer a {
    color: #666666;
    text-decoration: none;
    padding: 0 6px;
}

footer a:hover,
footer a:focus {
    color: #0066cc;
    text-decoration: underline;
}

/* Form iframe container */
.center-content {
    text-align: center;
    margin: 24px 0;
}

.center-content iframe {
    max-width: 100%;
    border: 1px solid #d0d0d0;
}

/* Small text / disclaimers */
p[style*="font-size:12px"],
p[style*="font-size:13px"] {
    font-size: 14px;
    color: #666666;
    margin-top: 16px;
    line-height: 1.6;
}

/* Strong/bold text */
strong {
    font-weight: 600;
    color: #000000;
}

/* Tablet breakpoint */
@media (min-width: 600px) {
    body {
        padding: 24px;
        font-size: 17px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    nav {
        font-size: 15px;
    }
}

/* Desktop breakpoint */
@media (min-width: 900px) {
    body {
        padding: 32px;
        font-size: 18px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    nav {
        font-size: 15px;
    }
    
    footer {
        font-size: 15px;
    }
}

/* Print styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000000;
    }
    
    nav,
    footer {
        display: none;
    }
    
    a {
        color: #000000;
        text-decoration: none;
    }
    
    a[href^="tel:"]:after {
        content: " (" attr(href) ")";
    }
}
