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

/* Body Styling */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Navigation Styles */
nav ul {
  list-style: none;
  background: #333;
  text-align: center;
  padding: 10px 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Header Styling */
header {
  background: #444;
  padding: 20px;
  text-align: center;
  color: white;
}

/* Section Styling */
section {
  padding: 20px;
  text-align: center;
}

/* Image Styling */
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corner */
  margin: 10px 0;
}

/* Footer Styling */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
}

/* Span Element */
.highlight {
  color: #d35400;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav ul li {
    display: block;
    margin-bottom: 10px;
  }
  section {
    padding: 10px;
  }
  img {
    border-radius: 5px; /* Slightly smaller corner on mobile */
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }
}

/* Float Example */
.float-box {
  float: left;
  width: 45%;
  margin: 2.5%;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* List Styling */
ul {
  list-style-type: square;
  padding-left: 20px;
  margin: 20px 0;
}

/* ID Styling */
#about, #contact, #home, #services, #map {
  background-color: #fff;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* CSS Comments for clarity */
/* Navigation styling for header */
/* Float and clear properties used in .float-box and .clearfix */
/* Responsive breakpoints defined for 768px and 480px */
/* Styling applied using class (.highlight, .float-box) and IDs (#about, etc.) */