/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.header {
    background: linear-gradient(135deg, #002244, #003366);
    color: white;
    padding: 50px 0;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.profile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 5px solid white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-info h1 {
    font-size: 36px;
    margin-bottom: 5px;
    font-weight: bold;
}

.profile-info h2 {
    font-size: 24px;
    font-weight: normal;
    color: #ddd;
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 18px;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.content, .achievements, .contact {
    background: white;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 26px;
    text-align: center;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

ul li::before {
    content: '\2714';
    color: green;
    position: absolute;
    left: 0;
    font-size: 22px;
    font-weight: bold;
}

.achievements p {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.achievements p::before {
    content: '\1F3C6';
    color: gold;
    position: absolute;
    left: 0;
    font-size: 22px;
}

.contact {
    text-align: center;
    background: #003366;
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.contact h3 {
    color: white;
}

.contact p {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact a {
    display: inline-block;
    background: gold;
    color: #003366;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.contact a:hover {
    background: #ffd700;
}

.footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 16px;
}
