/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #E0F7FF; /* lighter blue background */
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Container for centering content */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #CBEAFF; /* even lighter blue for container */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Main header */
h1 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
    text-align: center;
    font-size: 18px;
    color: #777;
    margin-bottom: 20px;
}

/* Profile section layout */
.profile-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* About me section */
.about {
    flex: 1 1 48%;
    margin-right: 20px;
}

.about h2 {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px;
}

.about p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Profile picture section */
.profile-pic {
    flex: 1 1 48%;
    text-align: center;
    margin-top: 20px;
}

.profile-pic img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Details section */
.details {
    flex: 1 1 48%;
    margin-top: 20px;
}

.details h2 {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px;
}

.details p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

/* Style for strong text */
strong {
    color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
    }

    .about, .profile-pic, .details {
        flex: 1 1 100%;
        margin-right: 0;
    }
}
