/* General Styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; } /* Header */ header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background-color: #ffffff; border-bottom: 1px solid #ddd; } nav ul { list-style: none; display: flex; gap: 1rem; } nav ul li a { text-decoration: none; color: #333; font-weight: bold; } /* Hero Section */ #hero { position: relative; text-align: center; color: white; } #hero img { width: 100%; height: auto; } .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .hero-content h1 { font-size: 3rem; } .button { display: inline-block; padding: 0.5rem 1rem; background-color: #88cc88; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; } /* About Section */ #about { padding: 2rem; background-color: #f9f9f9; text-align: center; } /* Services Section */ #services { padding: 2rem; } .service-grid { display: flex; justify-content: center; gap: 1rem; } .service img { width: 100%; border-radius: 5px; } .service h3 { text-align: center; margin-top: 0.5rem; } /* Contact Section */ #contact { padding: 2rem; background-color: #f4f4f4; } form { display: flex; flex-direction: column; gap: 1rem; } form input, form textarea, form button { padding: 0.5rem; font-size: 1rem; } /* Footer */ footer { text-align: center; padding: 1rem; background-color: #333; color: white; }