/* Основные стили */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.image-container {
    flex: 1;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.content-container {
    flex: 2;
    max-width: calc(100% - 320px);
    padding: 0 20px;
}

.title {
    font-size: 2.5rem;
    color: #4a4a9f;
    border-bottom: 3px solid #4a4a9f;
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
    color: #4a4a9f;
    margin-top: 20px;
    margin-bottom: 15px;
    position: relative;
}

h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #4a4a9f;
    margin-top: 5px;
    border-radius: 5px;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a4a9f;
    font-size: 1.5rem;
}

p {
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
    margin: 15px 0;
}

/* Анимация при наведении */
.profile-image:hover, .title:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .content-container {
        max-width: 100%;
        padding: 20px 0;
    }

    .title {
        font-size: 2rem;
    }
}
