/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and General Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #0073e6;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 4px solid #005bb5;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}


        nav {
            margin-top: 10px;
        }

        nav a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
            font-weight: bold;
        }

        nav a:hover {
            text-decoration: underline;
        }

        main {
            padding: 2rem;
        }

        h2 {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: #004aad;
        }
    

/* Form Section */
#signup {
    background-color: white;
    margin: 20px auto;
    padding: 30px;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#signup h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: black;
}

#signup label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: black;
}

#signup input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
}

#signup button {
    width: 100%;
    padding: 12px;
    background-color: #0073e6;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#signup button:hover {
    background-color: #005bb5;
}

/* Payment Section */
#payment {
    background-color: white;
    margin: 20px auto;
    padding: 30px;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

#payment h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
}

#payment p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

#payment button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

#payment button:hover {
    background-color: #218838;
}

#paypal-button-container {
    margin-top: 20px;
}

/* Confirmation Section */
#confirmation {
    background-color: #28a745;
    color: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
}

#confirmation h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#confirmation p {
    font-size: 1.2em;
}

#confirmation a {
    display: inline-block;
    padding: 12px 30px;
    background-color: #005bb5;
    color: white;
    font-size: 1.2em;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#confirmation a:hover {
    background-color: #003f8c;
}

/* Media Queries */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    #signup, #payment, #confirmation {
        padding: 20px;
        width: 90%;
    }

    #signup button, #payment button, #confirmation a {
        font-size: 1em;
    }
}
