
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.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;
}
