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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.hjsq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hjsq-main-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hjsq-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hjsq-logo-container {
    flex-shrink: 0;
}

.hjsq-site-title {
    margin: 0;
    font-size: 1.5rem;
}

.hjsq-site-title a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
}

.hjsq-menu-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.hjsq-menu-list a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.hjsq-menu-list a:hover,
.hjsq-menu-list a.hjsq-active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.hjsq-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    color: #fff;
}

.hjsq-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hjsq-hero-text {
    padding: 2rem 0;
}

.hjsq-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hjsq-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hjsq-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hjsq-featured-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hjsq-hero-image:hover .hjsq-featured-img {
    transform: scale(1.05);
}

.hjsq-cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hjsq-cta-button:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hjsq-intro-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.hjsq-section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.hjsq-inline-h1 {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.hjsq-inline-h1 a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hjsq-inline-h1 a:hover {
    color: #764ba2;
}

.hjsq-intro-text {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.hjsq-features-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hjsq-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hjsq-feature-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hjsq-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hjsq-feature-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.hjsq-feature-title {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.hjsq-feature-desc {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

.hjsq-gallery-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.hjsq-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hjsq-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.hjsq-gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hjsq-gallery-item:hover .hjsq-gallery-img {
    transform: scale(1.1);
}

.hjsq-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hjsq-gallery-item:hover .hjsq-gallery-overlay {
    transform: translateY(0);
}

.hjsq-gallery-category {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.hjsq-btn-center {
    text-align: center;
    margin-top: 3rem;
}

.hjsq-secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-secondary-button:hover {
    background-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hjsq-testimonials-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hjsq-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hjsq-testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hjsq-testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hjsq-testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.hjsq-main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.hjsq-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.hjsq-footer-title {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hjsq-footer-h1 {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

.hjsq-footer-h1 a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hjsq-footer-h1 a:hover {
    color: #fff;
}

.hjsq-footer-text {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.hjsq-footer-links {
    list-style: none;
}

.hjsq-footer-links li {
    margin-bottom: 0.5rem;
}

.hjsq-footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hjsq-footer-links a:hover {
    color: #3498db;
}

.hjsq-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hjsq-copyright {
    color: #95a5a6;
    font-size: 0.95rem;
}

.hjsq-page-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
                url('/hz202501.jpg') center/cover;
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: #fff;
    position: relative;
}

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

.hjsq-banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hjsq-banner-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.hjsq-gallery-main {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hjsq-gallery-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hjsq-gallery-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.hjsq-category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hjsq-filter-btn {
    padding: 0.75rem 1.75rem;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsq-filter-btn:hover,
.hjsq-filter-active {
    background-color: #667eea;
    color: #fff;
    border-color: #667eea;
}

.hjsq-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hjsq-work-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hjsq-work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hjsq-work-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hjsq-work-item:hover .hjsq-work-img {
    transform: scale(1.05);
}

.hjsq-work-info {
    padding: 1.5rem;
}

.hjsq-work-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hjsq-work-category {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hjsq-work-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.98rem;
}

.hjsq-cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #fff;
}

.hjsq-cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hjsq-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hjsq-about-intro {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hjsq-about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hjsq-about-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.hjsq-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hjsq-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hjsq-about-image:hover .hjsq-about-img {
    transform: scale(1.05);
}

.hjsq-values-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.hjsq-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.hjsq-value-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.hjsq-value-card:hover {
    transform: translateY(-10px);
}

.hjsq-value-icon {
    margin-bottom: 1.5rem;
}

.hjsq-value-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hjsq-value-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hjsq-value-desc {
    color: #666;
    line-height: 1.7;
}

.hjsq-team-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hjsq-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.hjsq-team-member {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hjsq-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hjsq-member-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    border: 5px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.hjsq-member-name {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hjsq-member-role {
    color: #667eea;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hjsq-member-bio {
    color: #666;
    line-height: 1.7;
}

.hjsq-timeline-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.hjsq-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.hjsq-timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.hjsq-timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.hjsq-timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
    text-align: right;
}

.hjsq-timeline-content {
    flex: 1;
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-left: 2rem;
}

.hjsq-timeline-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hjsq-timeline-desc {
    color: #666;
    line-height: 1.7;
}

.hjsq-services-intro {
    padding: 5rem 2rem 3rem;
    background-color: #fff;
    text-align: center;
}

.hjsq-services-desc {
    max-width: 900px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.hjsq-services-list {
    padding: 3rem 2rem 5rem;
    background-color: #fff;
}

.hjsq-service-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.hjsq-service-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.hjsq-service-reverse .hjsq-service-image {
    order: 2;
}

.hjsq-service-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hjsq-service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hjsq-service-image:hover .hjsq-service-img {
    transform: scale(1.05);
}

.hjsq-service-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hjsq-service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.hjsq-service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.hjsq-service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.hjsq-service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.hjsq-service-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hjsq-service-btn:hover {
    background-color: #764ba2;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hjsq-pricing-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.hjsq-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hjsq-process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.hjsq-process-step:hover {
    transform: translateY(-10px);
}

.hjsq-step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 1rem;
}

.hjsq-step-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hjsq-step-desc {
    color: #666;
    line-height: 1.6;
}

.hjsq-contact-main {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hjsq-contact-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.hjsq-contact-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-top: 1.5rem;
}

.hjsq-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.hjsq-contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hjsq-contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.hjsq-contact-card:hover {
    transform: translateY(-5px);
}

.hjsq-contact-icon {
    margin-bottom: 1rem;
}

.hjsq-contact-icon-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.hjsq-contact-card-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.hjsq-contact-detail {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hjsq-contact-note {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hjsq-contact-form-section {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hjsq-form-heading {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hjsq-form-subheading {
    color: #666;
    margin-bottom: 2rem;
}

.hjsq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.hjsq-form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.hjsq-form-input,
.hjsq-form-select,
.hjsq-form-textarea {
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.hjsq-form-input:focus,
.hjsq-form-select:focus,
.hjsq-form-textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

.hjsq-form-submit {
    padding: 1rem 2rem;
    background-color: #667eea;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hjsq-form-submit:hover {
    background-color: #764ba2;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hjsq-map-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.hjsq-map-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hjsq-map-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hjsq-map-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.hjsq-map-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hjsq-map-address,
.hjsq-map-transport,
.hjsq-map-parking {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.hjsq-map-address::before,
.hjsq-map-transport::before,
.hjsq-map-parking::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #667eea;
}

.hjsq-faq-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.hjsq-faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.hjsq-faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.hjsq-faq-item:hover {
    transform: translateX(10px);
}

.hjsq-faq-question {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hjsq-faq-answer {
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hjsq-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .hjsq-menu-list {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hjsq-hero-content,
    .hjsq-about-content,
    .hjsq-contact-layout,
    .hjsq-map-container,
    .hjsq-service-item {
        grid-template-columns: 1fr;
    }

    .hjsq-service-reverse {
        grid-template-columns: 1fr;
    }

    .hjsq-service-reverse .hjsq-service-image {
        order: 1;
    }

    .hjsq-hero-title {
        font-size: 2rem;
    }

    .hjsq-section-heading {
        font-size: 1.8rem;
    }

    .hjsq-banner-title {
        font-size: 2rem;
    }

    .hjsq-timeline::before {
        left: 50px;
    }

    .hjsq-timeline-year {
        width: 50px;
        font-size: 1.2rem;
    }

    .hjsq-timeline-content {
        margin-left: 1rem;
    }
}