body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 0;
    margin: 0;
}

header {
    background-color: #F54E00;
    /* primaryAction color */
    /* padding: 10px 0; */
    text-align: center;
}

header .logo {
    height: 100px;
    /* Adjust as needed */
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.icon img {
    width: 100px;
    height: auto;
    margin: 0 auto;
}

h1 {
    color: #333;
    font-size: 24px;
}

h2 {
    color: #333;
    font-size: 20px;
}

.info {
    text-align: left;
}

.info-item {
    margin-bottom: 20px;
}

.info-item img {
    width: 30px;
    height: auto;
}

h3 {
    color: #F54E00;
    /* primaryAction color */
    font-size: 18px;
}

p {
    font-size: 16px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #D4F553;
    /* secondaryAction color */
    color: #333;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

button:hover {
    background-color: #b8db49;
}