/* Variables */
:root {
    --primary-color: #191d3b;
    --secondary-color: #2d3748;
    --accent-color: #444;
}

@media print {
    .download-resume, 
    footer,
    #languages {
        display: none;
    }
    div .image {
        flex: 0 0 25%;
    }
    div .contact-info,
    div .title {
        flex: 0 0 50%;
    }
    aside {
        margin-top:1rem;
    }
    aside section{
        width: 50%;
        float: left;
    }
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.resume{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

/* Groups Styling */
.group {
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Header Styling */
.header {
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    align-items: center;
}
.intro {
    align-items: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.title p {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.contact-info {
    font-size: 0.95rem;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Section Styling */

section h2 {
    text-transform: uppercase;
    font-size: 1.4rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

section h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

section h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--secondary-color);
}

ul {
    padding-left: 2rem;
}

section li {
    font-size: 0.95rem;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 1.5rem 0;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

.list-unstyled {
    padding-left: 10px;
}