/* Main stylesheet for toilet installation Altoona PA */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2d3748;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a202c;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #2b6cb0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary {
    background: #2b6cb0;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2c5282;
}

.btn-phone {
    background: #2f855a;
    color: #ffffff;
}

.btn-phone:hover {
    background: #276749;
}

.btn-secondary {
    background: #edf2f7;
    color: #2d3748;
    margin-left: 12px;
}

.hero-section {
    background: linear-gradient(135deg, #ebf8ff 0%, #f7fafc 100%);
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 700px;
    margin-bottom: 30px;
}

.section-padding {
    padding: 64px 0;
}

.bg-light {
    background: #f7fafc;
}

.check-list {
    margin-top: 20px;
    padding-left: 20px;
}

.check-list li {
    margin-bottom: 12px;
}

.site-footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 32px 0;
    text-align: center;
    font-size: 0.875rem;
}