/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header */
.header {
    background-color: #ff6f61;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.navbar a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: #ffe6e1;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #e55d54;
}

/* Services Section */
.services {
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #ff6f61;
}

.service-card {
    background: white;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: #ff6f61;
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 40px 20px;
    background: #fff3f1;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
    color: #ff6f61;
}

/* Contact Section */
.contact {
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    color: #ff6f61;
}

.contact ul {
    list-style: none;
}

.contact li {
    margin: 10px 0;
}

/* Footer */
.footer {
    background-color: #ff6f61;
    color: white;
    text-align: center;
    padding: 10px 0;
}
