body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #ff6600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100px;
}
header img {
    max-height: 85px;
    margin-bottom: 0;
}
header p {
    font-size: 13px;
    margin: 0;
    color: #fff8e7;
    font-weight: 600;
}

/* Navigation */
nav {
    background: #222;
    padding: 15px;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    transition: color 0.3s;
}
nav a:hover {
    color: #ff6600;
}
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    cursor: pointer;
}
.btn:hover {
    background: #e65c00;
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
}

/* Section Containers (default) */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    transition: transform 0.3s;
}
.container:nth-of-type(even) {
    background: #f3f4f6;
}
.container:hover {
    transform: translateY(-4px);
}
.container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
    position: relative;
    display: inline-block;
}
.container h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff6600;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}
.container p {
    font-size: 16px;
    color: #555;
}

/* Home Section (Welcome) */
#home {
    background: linear-gradient(135deg, #fff7f2, #ffeede);
    padding: 60px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}
#home:hover {
    transform: translateY(-5px);
}
#home h2 {
    font-size: 32px;
    color: #ff6600;
    margin-bottom: 10px;
}
#home p {
    font-size: 18px;
    color: #444;
    max-width: 750px;
    margin: 0 auto;
}

/* Services Section */
#services {
    background: linear-gradient(135deg, #fff8f0, #ffe5cc);  
    padding: 60px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}
#services h2 {
    font-size: 30px;
    margin-bottom: 25px;
    color: #222;
}
.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 10px;
}
.service-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 28px rgba(0, 0, 0, 0.15);
}
.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.service-item h3 {
    margin: 15px 0 10px;
    color: #ff6600;
    font-size: 20px;
}
.service-item p {
    font-size: 15px;
    color: #555;
    margin: 0 15px 15px;
}

/* About Section */
#about {
    background: linear-gradient(135deg, #fff8f0, #ffe5cc);
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
#about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}

/* Contact Section */
#contact p {
    font-size: 17px;
    margin: 8px 0;
}
#contact p:nth-of-type(1),
#contact p:nth-of-type(2) {
    background: #fff3e6;
    padding: 12px 18px;
    border-radius: 8px;
    display: inline-block;
    margin: 8px auto;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 15px;
    background: #222;
    color: white;
    font-size: 14px;
}
