body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    background: #eeeeee;
    display: flex;
    justify-content: center;
    padding: 40px;
}

.resume {
    display: flex;
    max-width: 900px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

aside {
    background: #2c3e50;
    color: white;
    padding: 20px;
    width: 250px;
}

aside h2 {
    border-bottom: 1px solid #fff;
}

main {
    padding: 30px;
    flex-grow: 1;
}

h1 {
    margin-top: 0;
}

/* Адаптивність */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }

    .resume {
        flex-direction: column;
    }

    aside {
        width: 100%;
        padding: 15px;
        text-align: center;
    }

    main {
        padding: 20px;
    }

    h1 {
        font-size: 24px;
    }
}