/* Base Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f5f5f5;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
header {
  background-color: #008080;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

header h1 { font-size: 3em; margin-bottom: 10px; }
header p { font-size: 1.3em; color: #fff3b0; }

header .cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background-color: #ffdd00;
  color: #008080;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}
header .cta-btn:hover { background-color: #e6c800; }

/* Section Styles */
section { padding: 60px 20px; max-width: 1000px; margin: auto; }
section h2 { font-size: 2.5em; color: #008080; margin-bottom: 20px; text-align: center; }
section p { font-size: 1.1em; text-align: center; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Services Grid */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card {
  background-color: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); text-align: center; transition: 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); }
.service-card h3 { color: #008080; margin-bottom: 15px; }
.service-card p { color: #555; }

/* Contact Section */
.contact { text-align: center; }
.contact a { display: inline-block; margin-top: 20px; padding: 12px 25px; background-color: #ffdd00; color: #008080; font-weight: bold; border-radius: 5px; transition: 0.3s; }
.contact a:hover { background-color: #e6c800; }

/* Footer */
footer { background-color: #008080; color: #fff; padding: 30px 20px; text-align: center; }
footer p { margin: 0; }
