/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
    height: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background: url('../images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    overscroll-behavior: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    width: 120px;
}

.buttons img {
    margin: 0 5px;
    width: 110px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
}

.mockup img {
    max-width: 260px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.content {
    max-width: 600px;
    text-align: left;
}

/* Headings and Paragraphs */
h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.3;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffd700;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

ul {
    margin: 5px 0;
    padding-left: 20px;
    list-style: none;
}

/* Uncomment this for checkmark bullets */
ul li::before {
    content: "✔";
    color: #ffd700;
    margin-right: 5px;
}

/* Form Styles */
form {
    margin-top: 15px;
}

.form-group {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

input[type="email"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
}

.checkbox {
    margin-bottom: 15px;
}

.checkbox label {
    font-size: 0.9rem;
}

button {
    background-color: #7f00ff;
    color: #fff;
    padding: 8px 15px;
    font-size: 0.9rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #5500cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 15px;
    }

    .mockup img {
        max-width: 180px;
    }

    .content {
        max-width: 100%;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px;
    }
}
