body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f8;
}

.header {
    background: #7CC0FF;
    padding: 10px; 
    display: flex;
    align-items: center;
    justify-content: space-between; 
    color: white;
    flex-wrap: wrap; 
    height: 60px;
}

.header-title {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    margin: 0;
}
.back-btn {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.back-btn:hover {
    background-color: #0056b3;
}

.service-details-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-img {
    flex: 1;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.service-details {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

.service-details strong {
    color: #1e90ff;
}
