@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --orange: #FF8C00;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --text-dark: #222;
    --text-muted: #555;
    --border-color: #DDD;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
}

.container {
    max-width: 700px;
    margin: 40px auto;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

h1, h2 {
    text-align: center;
    color: var(--orange);
}

form label {
    display: block;
    margin: 15px 0 5px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    background: #fff;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    background: var(--orange);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%;
}

button:hover {
    background: #e67600;
}

footer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    margin: 40px 0 20px;
}

.cta-button {
  background-color: #FF8C00;
  color: white;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #ff9d23;
  transform: translateY(-3px);
}

.service .cta-button {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}


.service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  width: 280px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
  margin-top: 20px;
  font-size: 1.2em;
  font-weight: 600;
}

.service-card p {
  color: #555;
  font-size: 0.95em;
  margin-top: 10px;
}

.service-icon {
  font-size: 2.5em;
  color: #FF8C00;
  background-color: #FFF4E5;
  padding: 20px;
  border-radius: 50%;
}


.service-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.service-link:hover .service-card {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  cursor: pointer;
}
