body {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


header h1 {
    color: #4a4a4a;
}

button {
    padding: 15px 30px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    margin-top: 20px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    margin: 10% auto;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.no-thanks {
    color: #007bff;
    cursor: pointer;
    margin-top: 20px;
}

.button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.faq {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: left;
}

.faq h2 {
    color: #4a4a4a;
    margin-bottom: 15px;
    text-align: center;
}

.question {
    margin-bottom: 20px;
}

.question h3 {
    color: #007bff;
    font-size: 18px;
    margin-bottom: 5px;
}

.question p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0;
}

/* Center the main content and set a maximum width */
.container {
    max-width: 1200px; /* Adjust this value to your preference */
    margin: 0 auto; /* Center-aligns the container */
    padding: 0 20px; /* Adds padding for smaller screens */
}