/* General Styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; } header { background: #333; color: #fff; padding: 1rem; display: flex; align-items: center; justify-content: space-between; } header .logo img { max-width: 120px; } header nav ul { list-style: none; margin: 0; padding: 0; display: flex; } header nav ul li { margin: 0 1rem; } header nav ul li a { color: #fff; text-decoration: none; } /* Hero Section */ #hero { background: url('construction-bg.jpg') no-repeat center center/cover; color: #fff; text-align: center; padding: 4rem 1rem; } #hero h1 { font-size: 2.5rem; } .cta-button { background: #ff5733; color: #fff; padding: 0.5rem 1rem; text-decoration: none; border-radius: 5px; margin: 1rem 0; } .hero-phone { margin-top: 1rem; font-size: 1.2rem; } /* Services Section */ #services { background: #f4f4f4; padding: 2rem 1rem; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; } .service-card { background: #fff; padding: 1rem; border: 1px solid #ddd; border-radius: 5px; text-align: center; } /* Footer */ footer { background: #333; color: #fff; text-align: center; padding: 1rem; }