body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.container {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}
.headline-section {
    background-color: black;
    padding: 20px;
    text-align: center;
}
.headline-section h1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 2.5em; /* Adjust this value as needed */
    line-height: 1.2; /* Adjust line-height to make the text less spread out */
    max-width: 90%; /* Make the text narrower */
    margin: 0 auto; /* Center the text horizontally */
}
h2 {
    font-family: 'Montserrat', sans-serif;
    color: #34495e;
}
.highlight {
    color: #e74c3c;
    font-weight: bold;
}
.section {
    margin-bottom: 20px;
}
.section p {
    margin: 10px 0;
}
.list {
    list-style-type: disc;
    padding-left: 20px;
}
.list li {
    margin-bottom: 10px;
}
.btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #e74c3c;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}
.btn:hover {
    background-color: #c0392b;
}
footer {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 70%;
    margin: 0 auto;
}
.footer-left {
    font-size: 14px;
}
.footer-right img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    max-width: 64px;
    max-height: 64px;
}
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    .btn {
        padding: 10px;
    }
    .headline-section {
        padding: 10px;
    }
    .headline-section h1 {
        font-size: 1.8em; /* Smaller font size for mobile */
        line-height: 1.2; /* Adjust line height */
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {
        margin-top: 10px;
    }
    .footer-content {
        max-width: 90%;
    }
}

/* Pop-up Form CSS */
.popup-form {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
}

.popup-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.popup-content h2 {
    margin-top: 0;
    font-size: 24px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.popup-content label {
    display: block;
    margin: 10px 0 5px;
    font-family: 'Arial', sans-serif;
}

.popup-content input {
    width: calc(100% - 20px); /* Adjusted for padding */
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.popup-content button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
}

.popup-content button:hover {
    background-color: #c0392b;
}
