body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(45deg, #3a007d, #1c4064, #3d3b8e, #4d1b6a, #2e0161);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    color: #fff;
    height: auto;
    position: relative;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    z-index: 1000;
}

p {
    text-align: center;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    margin-top: 137.3px; /* Adjust for fixed header */
}

.hero-content {
    max-width: 60em;
    padding: 0 1rem;
}

.hero-section h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #622774;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #3d3b8e;
}

.contact-section {
    padding: 4rem 0;
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #3d3b8e, #622774, #3a007d);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 5px 8px 20px 4px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.contact-section .form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.contact-section input, .contact-section textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-section input::placeholder, .contact-section textarea::placeholder {
    color: #aaa;
}

.contact-section button {
    background-color: #622774;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.contact-section button:hover {
    background-color: #3d3b8e;
}

.footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .contact-section{
        padding: 4rem 0;
    }

    .contact-section h2 {
        font-size: 2rem;
    }

    .contact-section form {
        padding: 2rem  0;
    }
    .contact-section input, .contact-section textarea{
        width: 80%;
    }

    .contact-section .form-group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-section .form-group {
        margin-bottom: 0.75rem;
    }
}
