/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1d1d1d; /* Dark background */
    color: #f0f0f0; /* Light text */
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: #00bcd4;
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background-color: #242424; /* Dark gray section */
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left Section */
.left-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    flex: 1;
}

.profile-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name {
    font-size: 1.8rem;
    margin: 0;
}

.subtitle {
    font-size: 1rem;
    color: #a0a0a0;
    margin: 5px 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    font-size: 1.5rem;
    color: #cccccc;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #00bcd4;
}

/* Vertical Divider */
.vertical-divider {
    width: 2px;
    background-color: #333;
    height: 100%; /* Full height of container */
}

/* Right Section */
.right-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    padding-left: 20px;
}

.info-item h3 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-item p {
    font-size: 1rem;
    color: #fff;
}

.info-item a {
    color: #00bcd4;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .vertical-divider {
        display: none;
    }

    .left-section, .right-section {
        text-align: center;
    }
}
