* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #E6E6FA;
    line-height: 1.7;
    min-height: 100vh;
}

.resume {
    width: 100%;
    margin: 0;
    padding: 40px;
    background-color: #0f0f0f;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.4);
    border: 1px solid #4B0082;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px;
    border-bottom: 2px solid #4B0082;
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 10px;
}

header .photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #9370DB;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.5);
    margin-right: 30px;
    flex-shrink: 0;
}

header .info {
    flex: 1;
    min-width: 0;
}

header .info h1 {
    font-size: 2.6em;
    color: #9370DB;
    font-weight: 700;
    margin-bottom: 10px;
}

header .info p {
    font-size: 1.2em;
    color: #E6E6FA;
    margin-bottom: 15px;
}

header address {
    font-style: normal;
}

header address a {
    color: #9370DB;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    word-wrap: break-word;
}

header address a:hover {
    color: #E6E6FA;
}

section {
    margin-bottom: 35px;
}

h2 {
    color: #4B0082;
    font-size: 1.9em;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4B0082, #9370DB);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: '•';
    color: #9370DB;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -2px;
}

ul li strong {
    color: #9370DB;
    font-weight: 600;
}

.job h3 {
    color: #E6E6FA;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 8px;
}

.job p {
    color: #9370DB;
    font-weight: 500;
    margin-bottom: 15px;
}

.projects a {
    color: #9370DB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-word;
}

.projects a:hover {
    color: #E6E6FA;
}

@media (max-width: 1024px) {
    .resume {
        padding: 30px;
        margin: 0 20px;
    }
    header .info h1 {
        font-size: 2.3em;
    }
}

@media (max-width: 768px) {
    .resume {
        margin: 0 15px;
        padding: 20px;
    }
    header {
        flex-direction: column;
        text-align: center;
    }
    header .photo img {
        margin-right: 0;
        margin-bottom: 20px;
        width: 120px;
        height: 120px;
    }
    header .info h1 {
        font-size: 2.1em;
    }
    h2 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    header .info h1 {
        font-size: 1.8em;
    }
    .resume {
        padding: 15px;
        margin: 0 10px;
    }
    header .photo img {
        width: 100px;
        height: 100px;
    }
    header address a {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
    }
}
