.service-page-container {
    background-color: #f5f5f5;
    padding-bottom: 50px;
}

.service-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 42px;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.banner-content p {
    font-size: 18px;
    margin: 0;
}

.service-main {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 12px;
    display: flex;
    align-items: flex-start;
}

/* Sidebar */
.service-sidebar {
    width: 250px;
    background: white;
    margin-right: 12px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    background-color: white;
    margin-bottom: 5px;
}

.service-menu li:last-child {
    margin-bottom: 0;
}

.service-menu li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: all 0.3s;
}

.service-menu li.active a, .service-menu li a:hover {
    background-color: #e6e6e6;
    color: #333;
    border-color: #dcdcdc;
}

/* Content Area */
.service-content {
    flex: 1;
    background-color: white;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-content h2 {
    font-size: 20px;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Form Styles */
.contact-form .form-row {
    display: flex;
    margin-bottom: 20px;
    gap: 30px;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    width: 100%;
}

.contact-form label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-form label .required {
    color: red;
    margin-right: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00897b;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

/* Phone Group specific */
.phone-group {
    display: flex;
}

.phone-group select {
    width: 100px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #f9f9f9;
}

.phone-group input {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-group a {
    color: #00897b;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Button Group */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 10px 40px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
}

.btn-submit {
    background-color: #00897b;
    color: white;
}

.btn-submit:hover {
    background-color: #00796b;
}

.btn-reset {
    background-color: white;
    color: #666;
    border: 1px solid #ddd;
}

.btn-reset:hover {
    background-color: #f5f5f5;
}
