body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
  background-color: #fff;
}
header {
  background-image: url('../images/sipsy-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  text-align: center;
}
header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
header p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn {
  background-color: #ff7f27;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
}
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.modules {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.module {
  flex: 1 1 30%;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.module img {
  width: 160px;
  margin-bottom: 15px;
}
.module h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
}
.why-sipsy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
ul {
  padding-left: 20px;
}
footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.demo-request {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.demo-request h2 {
    font-size: 2.5em;
    color: #FF7F27;
}

.demo-request p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
}

.demo-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-form input,
.demo-form button {
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.demo-form button {
    background-color: #FF7F27;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.demo-form button:hover {
    background-color: #e06f20;
}