/* Reset some default styles */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light background to contrast with the content */
    color: #333;
    line-height: 1.6;
}

/* Container Styles */
.about-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 25px;
    text-align: center; /* Center the main heading */
    color: #2c3e50; /* Darker color for emphasis */
    font-weight: bold;
    border-bottom: 2px solid #e74c3c; /* Underline for visual separation */
    padding-bottom: 10px;
}

/* Service Section Styles */
.service {
    display: flex; /* Flexbox layout for service sections */
    align-items: center; /* Align items in the center */
    margin-bottom: 50px; /* Increased space between service items */
}

.service i {
    width: 60px; /* Fixed width for the icon container */
    height: auto;
}

.service h2 {
    font-size: 1.8em;
    color: #e74c3c; /* Highlight color for subheadings */
    margin-bottom: 10px;
}

.service p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
}
