* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
    font-family: 'Inter', 'PT Sans', sans-serif;
    background-color: #0a192f;
    color: #ccd6f6;
}

.container {
    min-height: 100vh;
    padding-top: 6vh;
    position: relative;
}

.navbar {
    width: 100%;
    height: 6vh;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.navbar-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-list > li {
    display: inline-block;
    height: 100%;
}

a {
    display: flex;
    align-items: center;
    color: #8892b0;
    text-align: center;
    padding: 0 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

a:hover {
    color: #64ffda;
}

a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #64ffda;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

a:hover::after {
    width: 80%;
}

h1 {
    color: #ccd6f6;
    text-align: center;
    padding: 2rem 0;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: rgba(17, 34, 64, 0.7);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    margin-top: 6vh;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background-color: #64ffda;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    margin-top: 10rem;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: rgba(17, 34, 64, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    color: #ccd6f6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 5px;
    color: #ccd6f6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.1);
}

button {
    background: transparent;
    color: #64ffda;
    padding: 0.8rem 2rem;
    border: 1px solid #64ffda;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

button:hover {
    background: rgba(100, 255, 218, 0.1);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background: rgba(17, 34, 64, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(5px);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.1);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64ffda;
    font-size: 1.5rem;
}

.contact-card h3 {
    color: #ccd6f6;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #64ffda;
}

footer {
    background-color: rgba(10, 25, 47, 0.95);
    color: #8892b0;
    text-align: center;
    padding: 1rem;
    width: 100%;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
        padding-top: 6vh;
    }
}

