/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

h2, h3 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* About Section */
#about {
    background-color: #fff;
    padding: 50px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-picture {
    flex: 1;
    max-width: 250px;
    margin-right: 40px;
}

.profile-picture img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid #007bff;
}

.about-text {
    flex: 2;
    max-width: 700px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.about-text strong {
    color: #007bff;
}

.about-buttons {
    margin-top: 20px;
}

.about-buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.about-buttons .btn:hover {
    background-color: #0056b3;
}

/* Skills Section */
.skills-section {
    margin-top: 40px;
    text-align: center;
}

.skills-list {
    list-style-type: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.skills-list li {
    background-color: #f8f9fa;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    border: 2px solid #007bff;
    border-radius: 5px;
    color: #007bff;
    font-weight: bold;
}

/* Additional Info */
.additional-info {
    margin-top: 40px;
    text-align: center;
}

.additional-info p {
    font-size: 18px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-picture {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
