* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    /*margin-top: 40px;*/
}

.header {
    background: white url('vecteezy_abstract-futuristic-connecting-dots-and-lines-on-dark-blue_8300450-crop.jpg') no-repeat center top;
    background-size: 100% 50%;
    color: #1a1a1a;
    padding: 10px 40px 0px 40px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    background-attachment: scroll;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    opacity: 0.1;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 0;
    object-fit: contain;
    border: none;
    margin-bottom: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: saturate(1);
    transition: filter 0.3s ease;
}

.profile-photo:hover {
    filter: saturate(1.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 0.95em;
    font-weight: 300;
    color: #999;
    letter-spacing: 1px;
}

.content {
    padding: 30px 40px;
}

.intro-text {
    font-size: 0.95em;
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-weight: 300;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 0;
}

.profile-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 20px;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    background: white;
    min-height: 100%;
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5em;
    margin-bottom: 12px;
    display: block;
}

.card-icon-img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.profile-card:hover .card-icon-img {
    filter: grayscale(0%);
}

.profile-card h2 {
    font-size: 1.15em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.profile-card p {
    font-size: 0.85em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 300;
}

.card-cta {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85em;
    color: #1a1a1a;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.profile-card:hover .card-cta {
    opacity: 0.6;
}

.cta-section {
    text-align: center;
    border-top: 1px solid #f0f0f0;
    padding: 20px 0 0 0;
    margin-top: 20px;
}

.cta-section p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    color: #1a1a1a;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1em;
}

.social-link:hover {
    background: #1a1a1a;
    color: white;
}

footer {
    background: white;
    border-top: 1px solid #f0f0f0;
    padding: 15px 40px;
    text-align: center;
    font-size: 0.85em;
    color: #999;
}

footer a {
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .header {
        padding: 60px 40px;
    }

    h1 {
        font-size: 2.5em;
        letter-spacing: -1px;
    }

    .content {
        padding: 40px;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .intro-text {
        font-size: 1em;
        margin-bottom: 35px;
    }

    footer {
        padding: 25px 40px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 20px;
    }

    .profile-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 25px;
    }

    h1 {
        font-size: 2em;
    }

    .content {
        padding: 30px 20px;
    }

    .profile-card {
        padding: 25px 20px;
    }

    footer {
        padding: 20px;
    }
}
