/* Base Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #9146FF, #6441A4);
    color: #f5f5f5;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
    background-color: #240B36;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #f5f5f5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.75em;
    font-weight: 500;
}

p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #d1d1e9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Links */
a {
    color: #9146FF;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

a:hover {
    color: #6441A4;
}

/* Buttons */
button, .btn {
    font-family: 'Montserrat', sans-serif;
    background-color: #9146FF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

button:hover, .btn:hover {
    background-color: #6441A4;
}

/* Forms */
input, textarea {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    background-color: #3A0CA3;
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

input:focus, textarea:focus {
    border-color: #9146FF;
    outline: none;
}

/* Header */
header {
    background-color: #3A0CA3;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

header nav {
    float: right;
}

header nav a {
    margin-left: 20px;
    font-size: 1em;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background-color: #3A0CA3;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

footer a {
    color: #9146FF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .container {
        flex-direction: column;
    }

    header nav {
        float: none;
        text-align: center;
    }

    header nav a {
        display: block;
        margin: 10px 0;
    }
}

