@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: #f9f7f3;
    color: #23451e;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f7f3;
    padding: 20px 40px 10px 40px;
    border-bottom: 4px solid #7a2e1c;
}
.logo {
    display: flex;
    align-items: center;
}
.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid #23451e;
    background: #fff;
}
.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #7a2e1c;
}
.menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.menu li a {
    text-decoration: none;
    color: #23451e;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}
.menu li a.active, .menu li a:hover {
    background: #7a2e1c;
    color: #fff;
}

.main-content {
    padding: 40px 0 0 0;
    min-height: 80vh;
    position: relative;
}
.service-section {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 32px rgba(122,46,28,0.08);
    padding: 40px 32px 32px 32px;
    position: relative;
    overflow: hidden;
}
.service-section::before, .service-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 80px;
    background: #7a2e1c;
    border-radius: 0 0 80px 80px / 0 0 80px 80px;
    z-index: 0;
}
.service-section::before {
    top: -40px;
    background: linear-gradient(180deg, #7a2e1c 80%, transparent 100%);
}
.service-section::after {
    bottom: -40px;
    background: linear-gradient(0deg, #7a2e1c 80%, transparent 100%);
}
.service-section h1 {
    font-size: 2.5rem;
    color: #23451e;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}
.subtitle {
    color: #23451e;
    font-size: 1.2rem;
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
}
.service-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    z-index: 1;
    position: relative;
}
.service-text {
    flex: 1 1 350px;
}
.service-text h2 {
    color: #7a2e1c;
    margin-bottom: 16px;
}
.service-text ul {
    padding-left: 20px;
    margin-bottom: 24px;
}
.service-text ul li {
    margin-bottom: 8px;
    font-size: 1.08rem;
}
.contact-box {
    background: #f9f7f3;
    border-left: 5px solid #7a2e1c;
    padding: 16px 24px;
    border-radius: 16px;
    margin-top: 16px;
    font-size: 1.05rem;
}
.contact-box h3 {
    margin-top: 0;
    color: #23451e;
}
.contact-box ul {
    list-style: none;
    padding-left: 0;
}
.service-image {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-image img {
    object-fit: cover;
    object-position: 70% 50%;
    height: 340px;
    width: 100%;
    max-width: 340px;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(122,46,28,0.10);
    background: #fff;
}
@media (max-width: 900px) {
    .service-content {
        flex-direction: column;
        gap: 24px;
    }
    .service-image {
        justify-content: flex-start;
    }
    .service-section {
        padding: 24px 8px 24px 8px;
    }
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 20px 10px 10px 10px;
    }
} 