/* Reset some default styles for consistency */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Style for the header */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* Style for the main content */
.service-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Style for the service details container */
.service-details-container {
    text-align: center;
}

/* Style for the service name */
h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Style for the service image */
img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Style for the service description */
p {
    font-size: 16px;
    line-height: 1.5;
}