

        /*nav*/
        body{
    min-height: 100vh;
    background-image: url(/imgSH/SH2.jpg);
    background-size: cover;
}
nav {

    background-color: rgb(253, 251, 251);
    box-sizing: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    padding-top: 0;

}
nav ul{
    width: 95%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
nav li{
    height: 40px;
}
nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
}
nav a:hover{
    background-color: white;
}
nav li:first-child{
    margin-right: auto;
}
.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: fit-content;
    width: 150px;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.sidebar li{
    width: 100%;
}
.sidebar a{
    width: 100%;
}
.menu-button{
    display: none;
}

@media(max-width: 800px){

    .hideOnMobile{
        display: none;
    }

    .menu-button{
    display: block;
    }
    .logo{
        align-content: center;
    }
    
    
}


@media(max-width: 400px){
  
    
  
    .sidebar{
        width: 100%;
    }
    .u-container-layout-3{
      transition: none;
      transform: none;
    }

    
}
.logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: transform 0.3s ease, color 0.3s ease;
        }



        :root {
            --primary: #2a4365;
            --secondary: #4299e1;
            --accent: #f6ad55;
            --light: #ebf8ff;
            --dark: #1a365d;
            --gray: #718096;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8fafc;
            color: #2d3748;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .services-hero {
            background: linear-gradient(135deg, var(--primary), var(--dark));
            color: white;
            padding: 6rem 0;
            text-align: center;
        }
        
        .services-hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .services-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 2rem;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .service-content p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }
        
        .service-features {
            margin-bottom: 1.5rem;
        }
        
        .service-features li {
            list-style: none;
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }
        
        .service-features li::before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
            margin-right: 0.5rem;
        }
        
        .service-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .service-btn:hover {
            background: var(--dark);
        }
        
        /* Consultation Section */
        .consultation-section {
            background: var(--light);
            padding: 5rem 0;
            text-align: center;
        }
        
        .consultation-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .consultation-content h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .consultation-content p {
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }
        
        .consultation-btn {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 1rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s, transform 0.3s;
        }
        
        .consultation-btn:hover {
            background: #fbbf24;
            transform: translateY(-3px);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1.5rem;
            background: var(--light);
            color: var(--primary);
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question::after {
            content: "-";
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .services-hero {
                padding: 4rem 0;
            }
            
            .services-hero h1 {
                font-size: 2rem;
            }
        }

                 /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            background: #3498db;
            bottom: -8px;
            left: 0;
        }
        
        .footer-section p, .footer-section a {
            color: #bdc3c7;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            margin: 0 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #3498db;
            transform: translateY(-5px);
        }
        
        .copyright {
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #bdc3c7;
        }
