body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.about-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

header {
    background: black;
    padding: 20px 0;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    max-height: 200px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 20px 0 0; 
    padding: 0;
}

nav ul li {
    margin: 0 15px; 
}

nav ul li a {
    color: #f4f4f9;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

.about-content {
    max-width: 700px;
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #6c63ff;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

.linkedin-section {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #5047ff, #6c63ff);
    color: #f4f4f9;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #5047ff, #3a32cc);
}

.contact-info {
    margin-top: 40px;
    font-size: 16px;
}

footer {
    background: #6c63ff;
    padding: 15px;
    width: 100%;
}
