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

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

/* Header Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar.transparent {
    background-color: transparent;
}

.navbar.transparent .logo h1,
.navbar.transparent .nav-links a,
.navbar.transparent .dropbtn,
.navbar.transparent .contact-number a {
    color: #fff;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    color: #fff;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.dropbtn:hover {
    color: #ff7f2a !important;
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-number a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-number a:hover {
    color: #ff7f2a;
}

.contact-number i {
    color: #ff7f2a;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background: none;
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
}

.dropdown-content a {
    color: #363c40 !important;
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    margin: 0;
    display: block;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: #ff7f2a;
    color: #fff !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 1000px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .nav-links a {
        margin: 0 0.7rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
        background-color: rgba(30, 36, 40, 0.95);
    }

    .nav-links {
        margin: 1rem 0;
        flex-direction: column;
        width: 100%;
    }

    .nav-links a,
    .dropbtn {
        margin: 0.5rem;
        padding: 0.5rem;
    }

    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        margin-top: 0;
        box-shadow: none;
        background-color: transparent;
    }

    .dropdown-content a {
        color: #fff !important;
        padding: 0.5rem;
    }

    .contact-number {
        margin-top: 0.5rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/image.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* About Section */
.about {
    padding: 5rem 5%;
    background-color: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

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

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form button {
    padding: 1rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #2980b9;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
}

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

/* Company Overview Section */
.company-overview {
    background: #fafbfc;
    padding: 4rem 0 3rem 0;
}
.overview-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.overview-left {
    flex: 1 1 420px;
    min-width: 340px;
}
.overview-right {
    flex: 1 1 340px;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.overview-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.overview-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.overview-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.2rem;
    max-width: 600px;
}
.service-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
}
.tab-btn {
    background: #fafbfc;
    border: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 1.5rem 0.8rem 1.5rem;
    cursor: pointer;
    color: #363c40;
    border-bottom: 2px solid transparent;
    transition: background 0.2s, border-bottom 0.2s;
}
.tab-btn.active, .tab-btn:hover {
    background: #fff;
    border-bottom: 2px solid #ff7f2a;
    color: #ff7f2a;
}
.tab-content {
    display: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 1.5rem 1.5rem 1.2rem 1.5rem;
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 2rem;
    min-height: 90px;
    max-width: 600px;
}
.tab-content.active {
    display: block;
}
.overview-call-btn {
    display: inline-block;
    background: #ff7f2a;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    margin-top: 1.2rem;
    transition: background 0.2s;
}
.overview-call-btn:hover {
    background: #e86c00;
}
.overview-right {
    position: relative;
}
.established-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #363c40;
    color: #fff;
    padding: 1.2rem 2.5rem 1.2rem 2.5rem;
    border-radius: 0 0 0 6px;
    text-align: center;
    z-index: 2;
}
.est-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7f2a;
    line-height: 1;
}
.est-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}
.overview-img {
    width: 100%;
    max-width: 420px;
    border-radius: 2px;
    margin-top: 3.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 1000px) {
    .overview-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .overview-right {
        align-items: flex-start;
    }
    .overview-img {
        margin-top: 2rem;
    }
    .established-badge {
        position: static;
        border-radius: 6px 6px 0 0;
        margin-bottom: 1rem;
    }
}

/* Service Overview Section */
.service-overview {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.service-overview-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.service-overview-left {
    flex: 1 1 380px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.service-overview-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.service-overview-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.service-overview-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.2rem;
    max-width: 500px;
}
.service-overview-play {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}
.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #fff;
    border: 6px solid #ffe3d0;
    border-radius: 50%;
    color: #ff7f2a;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.play-btn:hover {
    background: #ff7f2a;
    color: #fff;
}
.service-overview-right {
    flex: 2 1 600px;
    min-width: 340px;
}
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.service-card2 {
    background: #363c40;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card2:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.service-card2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.service-card2-content {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}
.service-card2-title {
    color: #ff7f2a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.service-card2-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.2s;
}
.service-card2-link:hover {
    color: #ff7f2a;
}
@media (max-width: 1000px) {
    .service-overview-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: #363c40;
    padding: 4rem 0 3rem 0;
}
.why-choose-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.why-choose-img-col {
    flex: 1 1 420px;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.why-choose-img {
    width: 100%;
    max-width: 420px;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #fff;
}
.why-choose-features-col {
    flex: 2 1 700px;
    min-width: 340px;
    display: flex;
    align-items: center;
}
.why-choose-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
    width: 100%;
}
.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.feature-icon {
    color: #ff7f2a;
    font-size: 2.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.feature-title {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.feature-desc {
    color: #e0e0e0;
    font-size: 1.02rem;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .why-choose-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .why-choose-img-col {
        justify-content: flex-start;
    }
}
@media (max-width: 700px) {
    .why-choose-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .why-choose-img {
        max-width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: #fafbfc;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.testimonials-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.testimonials-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.testimonials-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.testimonials-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-align: left;
    position: relative;
}
.testimonial-quote {
    color: #ff7f2a;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}
.testimonial-text {
    font-size: 1.35rem;
    color: #363c40;
    font-weight: 500;
    margin-bottom: 2.2rem;
    line-height: 1.3;
}
.testimonial-divider {
    width: 100%;
    height: 2px;
    background: #ff7f2a;
    margin-bottom: 1.2rem;
}
.testimonial-author {
    margin-top: 0.2rem;
}
.testimonial-name {
    font-weight: 700;
    color: #222;
    font-size: 1rem;
    letter-spacing: 1px;
}
.testimonial-role {
    color: #888;
    font-size: 0.98rem;
    margin-top: 0.2rem;
}
.testimonial-image-col {
    flex: 1 1 340px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-img {
    width: 100%;
    max-width: 480px;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 1000px) {
    .testimonials-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .testimonial-img {
        max-width: 100%;
    }
}

/* Get In Touch Contact Section */
.contact-section {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.contact-left {
    flex: 1 1 420px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.contact-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.contact-desc {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2.2rem;
    max-width: 500px;
}
.contact-call-btn {
    display: inline-block;
    background: #ff7f2a;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1.2rem 3rem;
    border-radius: 2px;
    text-decoration: none;
    margin-top: 1.2rem;
    transition: background 0.2s;
}
.contact-call-btn:hover {
    background: #e86c00;
}
.contact-right {
    flex: 2 1 600px;
    min-width: 340px;
}
.contact-form2 {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: none;
}
.contact-form2 label {
    font-weight: 500;
    color: #363c40;
    margin-bottom: 0.2rem;
}
.contact-form2 input,
.contact-form2 textarea {
    padding: 1rem;
    border: none;
    background: #f2f2f2;
    border-radius: 2px;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.contact-form2 textarea {
    height: 120px;
    resize: vertical;
}
.checkbox-container2 {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.98rem;
    color: #363c40;
}
.checkbox-container2 input[type="checkbox"] {
    margin-top: 0.2rem;
}
.contact-submit-btn {
    padding: 1.2rem 0;
    background-color: #ff7f2a;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0.7rem;
    transition: background-color 0.3s ease;
}
.contact-submit-btn:hover {
    background-color: #e86c00;
}
@media (max-width: 1000px) {
    .contact-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
}

/* Online Reviews Section */
.reviews-section {
    background: #fff;
    padding: 4rem 0 3rem 0;
    text-align: center;
}
.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 0.7rem;
}
.reviews-divider {
    width: 80px;
    height: 6px;
    background: #363c40;
    margin: 0 auto 2.5rem auto;
    border-radius: 3px;
}
.reviews-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.review-logo {
    height: 36px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(0.2);
}
.review-logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #363c40;
    letter-spacing: 1px;
}
.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}
.review-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid #f2f2f2;
}
.review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.review-card-logo {
    height: 38px;
    margin-bottom: 1.1rem;
    object-fit: contain;
    max-width: 120px;
}
.review-stars {
    color: #ffb400;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    letter-spacing: 2px;
}
.review-desc {
    color: #363c40;
    font-size: 1.05rem;
    margin-top: 0.2rem;
}
@media (max-width: 1100px) {
    .reviews-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .reviews-cards-grid {
        grid-template-columns: 1fr;
    }
    .reviews-logos-row {
        gap: 1.2rem;
    }
}

/* About Us Page Styles */
.about-hero {
    position: relative;
    min-height: 340px;
    background:  url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.about-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.about-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.about-hero-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.about-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .about-hero {
        padding-top: 2.5rem;
    }
    .about-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .about-hero-content h1 {
        font-size: 2.1rem;
    }
    .about-hero-label {
        margin-bottom: 1.2rem;
    }
}
.about-commitment {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}
.about-commitment h2 {
    font-size: 2rem;
    color: #ff7f2a;
    margin-bottom: 1rem;
}
.about-commitment p {
    font-size: 1.12rem;
    color: #363c40;
    max-width: 700px;
    margin: 0 auto;
}
.about-workflow {
    background: #fafbfc;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}
.about-workflow h2 {
    font-size: 2rem;
    color: #ff7f2a;
    margin-bottom: 2rem;
}
.workflow-steps {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.workflow-step {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.workflow-step i {
    color: #ff7f2a;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.workflow-step h3 {
    font-size: 1.18rem;
    color: #363c40;
    margin-bottom: 0.7rem;
    font-weight: 700;
}
.workflow-step p {
    color: #555;
    font-size: 1.05rem;
}
.workflow-desc {
    color: #363c40;
    font-size: 1.08rem;
    max-width: 800px;
    margin: 0 auto;
}
.about-images {
    background: #fff;
    padding: 2.5rem 0 2.5rem 0;
}
.about-images-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.about-images-row img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.about-qualities {
    background: #fafbfc;
    padding: 3rem 0 3rem 0;
    text-align: center;
}
.about-qualities h2 {
    font-size: 2rem;
    color: #ff7f2a;
    margin-bottom: 2rem;
}
.qualities-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.quality-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quality-card i {
    color: #ff7f2a;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.quality-card h3 {
    font-size: 1.18rem;
    color: #363c40;
    margin-bottom: 0.7rem;
    font-weight: 700;
}
.quality-card p {
    color: #555;
    font-size: 1.05rem;
}
@media (max-width: 900px) {
    .workflow-steps, .qualities-grid, .about-images-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* About Us Work Approach Section */
.about-work-approach {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.work-approach-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.work-approach-left {
    flex: 2 1 600px;
    min-width: 340px;
}
.work-approach-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
}
.work-approach-title {
    font-size: 3rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.work-approach-desc {
    font-size: 1.18rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 700px;
}
.work-approach-features {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}
.work-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    max-width: 320px;
}
.work-feature-icon-bg {
    background: #363c40;
    border-radius: 2px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.work-feature-icon-bg i {
    color: #ff7f2a;
    font-size: 2.3rem;
}
.work-feature h3 {
    color: #363c40;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.work-feature p {
    color: #555;
    font-size: 1.08rem;
}
.work-approach-right {
    flex: 1 1 340px;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.work-approach-img {
    width: 100%;
    max-width: 400px;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 1100px) {
    .work-approach-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .work-approach-features {
        flex-direction: column;
        gap: 2rem;
    }
    .work-approach-right {
        justify-content: flex-start;
    }
}

/* About Us Core Qualities Section */
.about-core-qualities {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.core-qualities-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.core-qualities-img-col {
    flex: 1 1 520px;
    min-width: 320px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.core-qualities-img {
    width: 100%;
    max-width: 520px;
    border-radius: 2px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.core-qualities-content-col {
    flex: 2 1 700px;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.core-qualities-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
}
.core-qualities-title {
    font-size: 3rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 2.2rem;
    line-height: 1.1;
}
.core-qualities-list {
    width: 100%;
}
.core-quality {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.2rem;
}
.core-quality-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #888;
    min-width: 2.5rem;
    text-align: right;
    font-family: inherit;
    margin-top: 0.2rem;
}
.core-quality-title {
    color: #363c40;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.core-quality-desc {
    color: #555;
    font-size: 1.13rem;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .core-qualities-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .core-qualities-img {
        max-width: 100%;
    }
}

/* Location Page Styles */
.location-hero {
    position: relative;
    min-height: 340px;
    background: url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.location-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.location-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.location-hero-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.location-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.location-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .location-hero {
        padding-top: 2.5rem;
    }
    .location-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .location-hero-content h1 {
        font-size: 2.1rem;
    }
    .location-hero-label {
        margin-bottom: 1.2rem;
    }
}
.location-info-section {
    background: #fff;
    padding: 3rem 0 3rem 0;
}
.location-info-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.location-info-left {
    flex: 1 1 380px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.location-info-left h2 {
    color: #363c40;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}
.location-info-left p {
    color: #555;
    font-size: 1.08rem;
    margin-bottom: 0.2rem;
}
.location-info-left i {
    color: #ff7f2a;
    margin-right: 0.7rem;
}
.location-info-left a {
    color: #363c40;
    text-decoration: underline;
}
.location-info-left h3 {
    margin-top: 1.5rem;
    color: #ff7f2a;
    font-size: 1.1rem;
    font-weight: 700;
}
.location-service-areas {
    list-style: disc inside;
    color: #363c40;
    margin-top: 0.5rem;
    margin-left: 1.2rem;
    font-size: 1.05rem;
}
.location-info-right {
    flex: 2 1 500px;
    min-width: 320px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.location-map-embed iframe {
    width: 100%;
    min-width: 280px;
    max-width: 500px;
    height: 320px;
    border-radius: 8px;
    border: 0;
}
@media (max-width: 900px) {
    .location-info-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .location-info-right {
        justify-content: flex-start;
    }
}

/* Contact Us Hero Banner */
.contact-hero {
    position: relative;
    min-height: 340px;
    background: url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.contact-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.contact-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.contact-hero-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.contact-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .contact-hero {
        padding-top: 2.5rem;
    }
    .contact-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .contact-hero-content h1 {
        font-size: 2.1rem;
    }
    .contact-hero-label {
        margin-bottom: 1.2rem;
    }
}
/* Contact Main Section */
.contact-main-section {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.contact-main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.contact-main-left {
    flex: 2 1 600px;
    min-width: 340px;
}
.contact-main-left h2 {
    color: #363c40;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.contact-main-right {
    flex: 1 1 340px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info-block {
    background: #fafbfc;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    margin-bottom: 1.5rem;
}
.contact-info-block h3 {
    color: #ff7f2a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-info-block p {
    color: #363c40;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}
.contact-info-block i {
    color: #ff7f2a;
    margin-right: 0.7rem;
}
.contact-info-block a {
    color: #363c40;
    text-decoration: underline;
}
.contact-map-embed iframe {
    width: 100%;
    min-width: 220px;
    max-width: 400px;
    height: 220px;
    border-radius: 8px;
    border: 0;
}
@media (max-width: 1000px) {
    .contact-main-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
    .contact-main-right {
        max-width: 100%;
    }
}

/* Blog Hero Banner */
.blog-hero {
    position: relative;
    min-height: 340px;
    background: url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.blog-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.blog-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.blog-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .blog-hero {
        padding-top: 2.5rem;
    }
    .blog-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .blog-hero-content h1 {
        font-size: 2.1rem;
    }
}

/* Blog Posts Grid */
.blog-posts-section {
    background: #f4f4f4;
    padding: 3rem 0 3rem 0;
}
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}
.blog-post-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-post-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.02);
}
.blog-post-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-post-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.blog-post-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 0.7rem;
}
.blog-post-meta {
    color: #ff7f2a;
    font-size: 0.98rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}
.blog-post-meta i {
    margin-right: 0.3rem;
}
.blog-post-excerpt {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    flex: 1 1 auto;
}
.blog-post-readmore {
    display: inline-block;
    color: #ff7f2a;
    border: 2px solid #ff7f2a;
    background: none;
    padding: 0.7rem 1.5rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.blog-post-readmore:hover {
    background: #ff7f2a;
    color: #fff;
}
@media (max-width: 1100px) {
    .blog-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    .blog-post-img {
        height: 160px;
    }
}

/* Career Hero Banner */
.career-hero {
    position: relative;
    min-height: 340px;
    background: url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.career-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.career-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.career-hero-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.career-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.career-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .career-hero {
        padding-top: 2.5rem;
    }
    .career-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .career-hero-content h1 {
        font-size: 2.1rem;
    }
    .career-hero-label {
        margin-bottom: 1.2rem;
    }
}

/* Career Join Our Team Section */
.career-join-section {
    background: #f4f4f4;
    padding: 3rem 0 2.5rem 0;
}
.career-join-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
}
.career-join-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1.2rem;
}
.career-join-desc {
    font-size: 1.18rem;
    color: #555;
    max-width: 900px;
}
@media (max-width: 700px) {
    .career-join-title {
        font-size: 2rem;
    }
    .career-join-container {
        padding: 0 1rem;
    }
}

/* Career Application & Job Openings Section */
.career-application-section {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.career-application-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.career-application-left, .career-application-right {
    flex: 1 1 480px;
    min-width: 320px;
}
.career-section-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.career-application-title, .career-openings-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1.2rem;
}
.career-application-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: none;
}
.career-application-form label {
    font-weight: 500;
    color: #363c40;
    margin-bottom: 0.2rem;
}
.career-application-form input[type="text"],
.career-application-form input[type="email"],
.career-application-form input[type="tel"],
.career-application-form textarea {
    padding: 1rem;
    border: none;
    background: #f2f2f2;
    border-radius: 2px;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}
.career-application-form textarea {
    height: 120px;
    resize: vertical;
}
.career-application-form input[type="file"] {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.career-application-submit {
    padding: 1.2rem 0;
    background-color: #ff7f2a;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0.7rem;
    transition: background-color 0.3s ease;
}
.career-application-submit:hover {
    background-color: #e86c00;
}
.career-openings-title {
    margin-top: 0.5rem;
}
.career-openings-desc {
    font-size: 1.08rem;
    color: #555;
    margin-bottom: 2rem;
}
.career-job-listings {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.career-job-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.career-job-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #ff7f2a;
    border-radius: 50%;
    color: #ff7f2a;
    font-size: 1.7rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.career-job-title {
    color: #363c40;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.career-job-meta {
    color: #555;
    font-size: 1.05rem;
}
@media (max-width: 1000px) {
    .career-application-container {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }
}

/* Career Employee Benefits Section */
.career-benefits-section {
    background: #f4f4f4;
    padding: 4rem 0 3rem 0;
}
.career-benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}
.career-benefits-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 2.5rem;
    text-align: left;
}
.career-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}
.career-benefit-item strong {
    font-size: 1.18rem;
    color: #363c40;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}
.career-benefit-item p {
    color: #555;
    font-size: 1.13rem;
    max-width: 900px;
}
@media (max-width: 700px) {
    .career-benefits-title {
        font-size: 2rem;
    }
    .career-benefits-container {
        padding: 0 1rem;
    }
}

/* Roofing Hero Section */
.roofing-hero {
    position: relative;
    min-height: 340px;
    background: url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.roofing-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.roofing-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.roofing-hero-label {
    background: #363c40;
    color: #ff7f2a;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.roofing-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.roofing-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .roofing-hero {
        padding-top: 2.5rem;
    }
    .roofing-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .roofing-hero-content h1 {
        font-size: 2.1rem;
    }
    .roofing-hero-label {
        margin-bottom: 1.2rem;
    }
}

/* Roofing Services Section */
.roofing-services {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.roofing-services-container {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.roofing-services-content {
    flex: 1;
    max-width: 700px;
}
.roofing-services-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.roofing-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 2rem;
}
.roofing-service-item {
    margin-bottom: 2rem;
}
.roofing-service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #363c40;
    margin-bottom: 0.8rem;
}
.roofing-service-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}
.roofing-services-image {
    flex: 0 0 450px;
    margin-top: 4.5rem;
}
.roofing-services-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
@media (max-width: 1100px) {
    .roofing-services-container {
        flex-direction: column;
    }
    .roofing-services-image {
        flex: 0 0 auto;
        margin-top: 2rem;
        max-width: 600px;
    }
}
@media (max-width: 700px) {
    .roofing-services {
        padding: 3rem 0 2rem 0;
    }
    .roofing-services-container {
        padding: 0 1rem;
    }
    .roofing-services h2 {
        font-size: 2rem;
    }
}

/* Roofing FAQ Section */
.roofing-faq {
    background: #f4f4f4;
    padding: 4rem 0 3rem 0;
}
.roofing-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}
.roofing-faq-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.roofing-faq h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 1rem;
    text-align: center;
}
.roofing-faq-desc {
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 500;
    color: #363c40;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.faq-question:hover {
    background: #f8f8f8;
}
.faq-icon {
    color: #ff7f2a;
    transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}
.faq-answer p {
    padding: 0 1.2rem 1.2rem 1.2rem;
    margin: 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}
.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}
@media (max-width: 700px) {
    .roofing-faq {
        padding: 3rem 0 2rem 0;
    }
    .roofing-faq-container {
        padding: 0 1rem;
    }
    .roofing-faq h2 {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 1.05rem;
        padding: 1rem;
    }
}

/* Reroofing Hero Section */
.reroofing-hero {
    position: relative;
    min-height: 340px;
    background: url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.reroofing-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.reroofing-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.reroofing-hero-label {
    background: #363c40;
    color: #ff7f2a;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.reroofing-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.reroofing-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}

/* Reroofing Process Section */
.reroofing-process {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.reroofing-process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.reroofing-process-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.reroofing-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 3rem;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.process-item {
    text-align: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.process-icon {
    width: 70px;
    height: 70px;
    background: #ff7f2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}
.process-icon i {
    font-size: 1.8rem;
    color: #fff;
}
.process-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #363c40;
    margin-bottom: 1rem;
}
.process-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Reroofing Benefits Section */
.reroofing-benefits {
    background: #f4f4f4;
    padding: 4rem 0 3rem 0;
}
.reroofing-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.reroofing-benefits-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.reroofing-benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 3rem;
}
.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.benefit-item i {
    font-size: 2.5rem;
    color: #ff7f2a;
    margin-bottom: 1.2rem;
}
.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #363c40;
    margin-bottom: 1rem;
}
.benefit-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .reroofing-hero {
        padding-top: 2.5rem;
    }
    .reroofing-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .reroofing-hero-content h1 {
        font-size: 2.1rem;
    }
    .reroofing-hero-label {
        margin-bottom: 1.2rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .reroofing-process h2,
    .reroofing-benefits h2 {
        font-size: 2rem;
    }
    .reroofing-process-container,
    .reroofing-benefits-container {
        padding: 0 1rem;
    }
}

/* Maintenance Hero Section */
.maintenance-hero {
    position: relative;
    min-height: 340px;
    background: url('/wp-content/themes/twentytwenty/naperville-roof-pros/assets_roofing/css/images/88.jpg') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 4.5rem;
}
.maintenance-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 40, 0.55);
    display: flex;
    align-items: flex-start;
}
.maintenance-hero-content {
    padding: 4.5rem 4% 3.5rem 6%;
    max-width: 700px;
    color: #fff;
    text-align: left;
    margin-top: 0;
}
.maintenance-hero-label {
    background: #363c40;
    color: #ff7f2a;
    display: inline-block;
    padding: 0.5rem 1.3rem 0.4rem 1.3rem;
    border-radius: 2px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2.2rem;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}
.maintenance-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}
.maintenance-hero-content p {
    font-size: 1.18rem;
    color: #fff;
    max-width: 600px;
    margin-bottom: 0;
}

/* Maintenance Services Section */
.maintenance-services {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.maintenance-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.maintenance-services-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.maintenance-services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 3rem;
}
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.maintenance-item {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.maintenance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.maintenance-icon {
    width: 70px;
    height: 70px;
    background: #ff7f2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.maintenance-icon i {
    font-size: 1.8rem;
    color: #fff;
}
.maintenance-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #363c40;
    margin-bottom: 1rem;
}
.maintenance-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Maintenance Benefits Section */
.maintenance-benefits {
    background: #f4f4f4;
    padding: 4rem 0 3rem 0;
}
.maintenance-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.maintenance-benefits-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}
.maintenance-benefits-left {
    flex: 1;
}
.maintenance-benefits-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.maintenance-benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 2.5rem;
}
.benefits-checklist {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.benefit-check-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}
.benefit-check-item i {
    color: #ff7f2a;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.benefit-check-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #363c40;
    margin-bottom: 0.5rem;
}
.benefit-check-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}
.maintenance-benefits-right {
    flex: 1;
}
.maintenance-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* Maintenance Plans Section */
.maintenance-plans {
    background: #fff;
    padding: 4rem 0 3rem 0;
}
.maintenance-plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}
.maintenance-plans-label {
    background: #ff7f2a;
    color: #fff;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.maintenance-plans h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #363c40;
    margin-bottom: 3rem;
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.plan-item {
    background: #f8f8f8;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.plan-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.plan-item.featured {
    background: #363c40;
    color: #fff;
}
.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff7f2a;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}
.plan-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #363c40;
}
.plan-item.featured h3 {
    color: #fff;
}
.plan-features {
    list-style: none;
    text-align: left;
}
.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #555;
}
.plan-item.featured .plan-features li {
    color: #e0e0e0;
}
.plan-features i {
    color: #ff7f2a;
}

@media (max-width: 1000px) {
    .maintenance-grid {
        grid-template-columns: 1fr;
    }
    .maintenance-benefits-content {
        flex-direction: column;
    }
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .maintenance-hero {
        padding-top: 2.5rem;
    }
    .maintenance-hero-content {
        padding: 2.5rem 5% 2.5rem 5%;
        max-width: 100%;
    }
    .maintenance-hero-content h1 {
        font-size: 2.1rem;
    }
    .maintenance-hero-label {
        margin-bottom: 1.2rem;
    }
    .maintenance-services h2,
    .maintenance-benefits h2,
    .maintenance-plans h2 {
        font-size: 2rem;
    }
    .maintenance-services-container,
    .maintenance-benefits-container,
    .maintenance-plans-container {
        padding: 0 1rem;
    }
}