* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #4262fb;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
}

.logo {
    margin-bottom: 50px;
}

.logo img {
    max-width: 300px;
    height: auto;
    filter: brightness(0) invert(1);
}

h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 50px;
    border-radius: 10px;
    min-width: 300px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    border-bottom: 2px solid white;
    padding-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin: 15px 0;
}

a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .contact-section {
        gap: 30px;
    }

    .contact-box {
        min-width: 250px;
        padding: 30px 40px;
    }

    .logo img {
        max-width: 200px;
    }
}
