.header {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: white;
    text-shadow: 2px 2px 4px rgba(5, 6, 13, 0.6);
    margin: 0;
}

.contact {
    display: flex;
    justify-content: center;
    padding: 0 50px 100px 50px;
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    width: 100%;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: white;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.linkContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contactLink {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: 1px solid transparent;
}

.contactLink:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.label {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #aaaaaa;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    word-break: break-all;
}

.buttonLink {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: #05060d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    grid-column: 1/-1;
}

.buttonLink:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 760px) {
    .header {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .title {
        font-size: 40px;
    }

    .contact {
        padding: 0 20px 50px 20px;
    }

    .card {
        padding: 25px;
        gap: 25px;
    }

    .linkContainer {
        grid-template-columns: 1fr;
    }
}