/* Basic reset and styling */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: orange;
    color: white;
    padding: 15px 30px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
      font-family: "Playwrite GB S", cursive;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 32px;
    color: #333;
    color: orange;
     font-family: "Playwrite GB S", cursive;
    

}

p {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.service-item {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.service-item h2 {
    font-size: 24px;
    color: orange;
}

.service-item p {
    font-size: 16px;
    color: #555;
}