body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #FFFFFF;
    color: #2C2C2C;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header {
    padding: 20px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1e90ff;
}

.contact-container {
    text-align: center;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.contact-container h1 {
    margin-bottom: 30px;
    font-size: 2.5em;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    margin-bottom: 10px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #444;
}

button.primary-btn {
    background-color: #1e90ff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button.primary-btn:hover {
    background-color: #3742fa;
    transform: translateY(-3px);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.buttons .button, .buttons button {
    margin: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.primary-btn {
    background-color: #1e90ff;
    color: white;
}

.primary-btn:hover {
    background-color: #3742fa;
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: #ffffff;
    color: #121212;
}

.secondary-btn:hover {
    background-color: #dddddd;
    transform: translateY(-3px);
}

.header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-direction: column;
}

.logo img {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.content {
    text-align: center;
}

.content h1 {
    font-size: 2.5em;
    margin: 0;
}

.content p {
    font-size: 1.2em;
    margin-top: 10px;
}

.content a[href^="mailto:"] {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dotted #ffffff;
    transition: border-bottom-color 0.3s ease;
}

.content a[href^="mailto:"]:hover {
    border-bottom-color: #1e90ff;
}

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Contact page specific styles */
.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 140px); /* Adjust for header and footer */
}

.contact-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

.contact-container h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e90ff;
}

.contact-container p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e90ff;
    background-color: rgba(255, 255, 255, 0.1);
}

button.primary-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: #1e90ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button.primary-btn:hover {
    background-color: #3742fa;
    transform: translateY(-2px);
}

button.primary-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .logo img {
        max-width: 300px;
    }

    .buttons {
        flex-direction: column;
    }

    .contact-container {
        padding: 1.5rem;
    }
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-feedback.success {
    background-color: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    opacity: 1;
}

.form-feedback.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    opacity: 1;
}