body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #2980b9, #2c3e50);
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.header {
    text-align: center;
    padding: 20px;
}

.photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #2980b9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 2.5em;
    color: #2c3e50;
}

h2 {
    margin: 10px 0;
    font-size: 1.5em;
    color: #777;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 20px;
}

.contact-info, .links {
    width: 48%;
}

.contact-info p, .links p {
    margin: 10px 0;
    text-align: left;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

i {
    margin-right: 8px;
}

@media (max-width: 600px) {
    .container {
        margin: 20px;
        padding: 10px;
    }

    .photo {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.2em;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-info, .links {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-info p, .links p {
        font-size: 0.9em;
    }
}
