/* Reset */
•	{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
Body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #c0c0c0;
    line-height: 1.6;
    padding-top: 50px;
}

/* Header */
.header {
    background-color: #1a1a1a;
    color: #c0c0c0;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo Image */
.header img {
    height: 80px;
    width: auto;
}

/* Header Text */
.header-text {
    flex: 1;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    color: #dcdcdc;
}

/* Navigation Menu */
.menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 10px;
    background-color: #333;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    width: 200px;
}

.menu a {
    color: #c0c0c0;
    text-decoration: none;
    display: block;
    padding: 10px;
    font-size: 1.1rem;
}

.menu a:hover {
    background-color: #555;
}

/* Hamburger Icon */
.hamburger {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    z-index: 999;
}

.hamburger div {
    width: 30px;
    height: 4px;
    background-color: #ffffff;
}

/* Content */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.content h2 {
    font-size: 2rem;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* CTA Button */
.cta-button {
    display: block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin: 20px auto;
    width: fit-content;
    max-width: 100%;
}

.cta-button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Footer */
.footer {
    text-align: center;
    background-color: #333;
    padding: 20px;
    color: #c0c0c0;
    position: relative;
    margin-top: 20px;
    bottom: 0;
    width: 100%;
}

.footer p {
    font-size: 1rem;
}

.footer a {
    color: #c0c0c0;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

/* Hamburger Menu Toggle */
.menu.active {
    display: block;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
    }

    .header img {
        margin-bottom: 10px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1rem;
    }

    .menu {
        left: 10px;
    }

    .content {
        padding: 15px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
        max-width: 90%;
        margin: 20px auto;
        background-color: #28a745;
    }

    .footer {
        position: static;
    }
}
@media (max-width: 480px) {
    Input[type=”text”],
    Input[type=”email”] {
        Width: 70%;      /* Full width but inside container */
        Max-width: 50px; /* Limit max width on mobile */
        Font-size: 1rem;
        Padding: 100px;
        Margin-bottom: 15px;
        Box-sizing: border-box;
    }

    Textarea {
        Width: 90%;
        Font-size: 1rem;
        Padding: 10px;
        Margin-bottom: 15px;
    }
}

