body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}


section {
    padding: 40px;
     width: 80%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #333;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #333;
    color: #fff;
}
.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    
}

.personal-details {
    line-height: 1.6;
}

.personal-details p {
    margin: 10px 0;
}

.personal-details strong {
    color: #333;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    color: #fff;
    margin: 0;
}

header p {
    color: #ddd;
    margin: 0;
}

.skills {
    line-height: 1.6;
}

.skill-set {
    margin-bottom: 20px;
}

.skill-set h3 {
    color: #fff;
    margin-top: 0;
}

.skill-set ul {
    list-style-type: none;
    padding: 0;
}

.skill-set li {
    margin: 10px 0;
}

.skill-set strong {
    color: red; /* Slightly lighter color for labels */
}

.why-choose {
    margin-top: 20px;
}

.why-choose h3 {
    color: #fff;
}

.why-choose ul {
    list-style-type: disc;
    padding-left: 20px;
}

.why-choose li {
    margin: 10px 0;
}
.about-content {
    display: flex;  /* Use flexbox for layout */
    align-items: flex-start; /* Align items at the start */
}

.about-text {
    flex: 1;  /* Takes up remaining space */
}

.about-image {
    margin-left: 20px; /* Space between text and image */
}

.about-image img {
    max-width: 150px; /* Max width to ensure it fits */
    width: 100%; /* Responsive size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Adds rounded corners */
}