/* Базові налаштування */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5; /* Світло-сірий фон сторінки */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* На весь екран */
    padding: 20px;
}

/* Контейнер картки */
.card-container {
    background-color: white;
    width: 100%;
    max-width: 400px; /* Максимальна ширина картки */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Тінь для об'єму */
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.card-container:hover {
    transform: translateY(-5px); /* Легка анімація при наведенні */
}

/* Фото */
.photo-container {
    background-color: #4a90e2; /* Колір верхньої шапки */
    padding: 40px 20px 20px;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Робить фото круглим */
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Текстова частина */
.info-container {
    padding: 20px 30px 40px;
}

h1 {
    color: #333;
    font-size: 24px;
    margin-bottom: 5px;
}

.job-title {
    color: #4a90e2; /* Акцентний колір */
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.description {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Навички */
.skills {
    margin-bottom: 25px;
    text-align: left; /* Вирівнювання списку ліворуч */
}

.skills h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.skills ul {
    list-style: none; /* Прибираємо крапки списку */
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills li {
    background-color: #eef2f7;
    color: #555;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

/* Кнопки */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.primary {
    background-color: #4a90e2;
    color: white;
}

.primary:hover {
    background-color: #357abd;
}

.secondary {
    background-color: transparent;
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.secondary:hover {
    background-color: #eef6ff;
}