
    
:root {


--background: #FFFFFF; --foreground: #0B2340; --border: #00000014; --input: #F7F9FB; --primary: #0B3A6B; --primary-foreground: #FFFFFF; --secondary: #F6F2EA; --secondary-foreground: #2E3A42; --muted: #F0F3F6; --muted-foreground: #6B7785; --success: #E6F4EA; --success-foreground: #0B6B3A; --accent: #f0c244; --accent-foreground: #08202A; --destructive: #FCEAEA; --destructive-foreground: #8B1D1D; --warning: #FFF4E5; --warning-foreground: #7A5A00; --card: #FFFFFF; --card-foreground: #0B2340; --sidebar: #FBFDFF; --sidebar-foreground: #0B2340; --sidebar-primary: #0B3A6B; --sidebar-primary-foreground: #FFFFFF; --radius-sm: 0px; --radius-md: 0px; --radius-lg: 0px; --radius-xl: 0px; --font-family-body: 'Inter', 'Inter Fallback'; font-family: var(--font-family-body);
}


    * {
      box-sizing: border-box;
      margin:0;
    }
    :host > div {
      margin: 0;
      padding: 0;
      font-family: var(--font-family-body, sans-serif);
      background-color: var(--background);
      color: var(--foreground);
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section {
      padding: 80px 0;
    }
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 64px auto;
    }
    .section-title {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--primary);
    }
    .section-subtitle {
      font-size: 18px;
      color: var(--muted-foreground);
      line-height: 1.6;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 48px;
      padding: 0 32px;
      border-radius: var(--radius-md);
      font-weight: 500;
      font-size: 15px;
      text-decoration: none;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s;
    }
    .btn-primary {
      background-color: var(--primary);
      color: var(--primary-foreground);
    }

    header .btn-primary {
      background-color: var(--primary-foreground);
      color: var(--primary);
    } 
    .btn-outline {
      background-color: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
    }
    .btn-accent {
      background-color: var(--accent);
      color: var(--accent-foreground);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: var(--primary);
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 24px;
      font-weight: 700;
      color: var(--primary-foreground);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-monogram {
      width: 40px;
      height: 40px;
      background-color: var(--primary);
      color: var(--primary-foreground);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-md);
      font-size: 20px;
    }
    .nav-menu {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .nav-link {
      text-decoration: none;
      color: var(--primary-foreground);
      font-weight: 500;
      font-size: 15px;
    }
    .nav-link.active {
      color: var(--accent);
      opacity: 0.9;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 60;
    }
    
    .hamburger-line {
      width: 24px;
      height: 2px;
      background-color: var(--primary-foreground);
      margin: 3px 0;
      transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
      transform-origin: center;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
      opacity: 0;
      transform: scale(0);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: var(--primary);
      z-index: 55;
      transform: translateX(-100%);
      transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 80px 20px 20px;
    }
    
    .mobile-menu.active {
      transform: translateX(0);
    }
    
    /* Close button positioning when menu is open */
    .site-header {
      position: relative;
      z-index: 60;
    }
    
    .mobile-menu-toggle {
      position: relative;
      z-index: 61;
    }
    
    .mobile-nav-menu {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
      margin-bottom: 40px;
    }
    
    .mobile-nav-link {
      color: var(--primary-foreground);
      text-decoration: none;
      font-size: 18px;
      font-weight: 500;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
    
    .mobile-menu.active .mobile-nav-link {
      opacity: 1;
      transform: translateY(0);
    }
    
    .mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
    
    .mobile-nav-link.active {
      color: var(--accent);
    }
    
    .mobile-cta-button {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
      transition-delay: 0.3s;
    }
    
    .mobile-menu.active .mobile-cta-button {
      opacity: 1;
      transform: translateY(0);
    }

    .hero {
      background-color: var(--muted);
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }
    .hero-content {
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .hero-text {
      flex: 1;
    }
    .hero-headline {
      font-size: 48px;
      line-height: 1.2;
      font-weight: 800;
      color: var(--foreground);
      margin-bottom: 24px;
    }
    .hero-subtext {
      font-size: 18px;
      line-height: 1.6;
      color: var(--muted-foreground);
      margin-bottom: 32px;
      max-width: 540px;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
    }
    .hero-image-wrapper {
      flex: 1;
      position: relative;
    }
    .hero-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-image {
      width: 100%;
      border-radius: var(--radius-lg);
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .about-text-content h3 {
      font-size: 24px;
      margin-bottom: 16px;
      color: var(--primary);
    }
    .about-text-content p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--muted-foreground);
      margin-bottom: 24px;
    }
    .milestones {
      display: flex;
      gap: 32px;
      margin-top: 32px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
    }
    .milestone-item h4 {
      font-size: 32px;
      font-weight: 700;
      color: var(--accent);
      margin: 0 0 8px 0;
    }
    .milestone-item span {
      font-size: 14px;
      color: var(--muted-foreground);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      transition: transform 0.2s;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .service-icon {
      width: 48px;
      height: 48px;
      background-color: var(--secondary);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 24px;
    }
    .service-card h3 {
      font-size: 20px;
      margin: 0 0 12px 0;
      color: var(--card-foreground);
    }
    .service-card p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--muted-foreground);
      flex-grow: 1;
    }
    .service-link {
      margin-top: 24px;
      color: var(--primary);
      font-weight: 500;
      font-size: 14px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .form-section {
      background-color: var(--secondary);
    }
    .service-form {
      background: var(--card);
      padding: 48px;
      border-radius: var(--radius-xl);
      max-width: 800px;
      margin: 0 auto;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .form-group.full-width {
      grid-column: span 2;
    }
    .form-label {
      font-size: 14px;
      font-weight: 500;
      color: var(--foreground);
    }
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      background-color: var(--input);
      color: var(--foreground);
      font-family: inherit;
      font-size: 14px;
    }
    .form-textarea {
      min-height: 120px;
      resize: vertical;
    }
    .file-upload {
      border: 2px dashed var(--border);
      padding: 24px;
      text-align: center;
      border-radius: var(--radius-md);
      cursor: pointer;
      color: var(--muted-foreground);
      font-size: 14px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .testimonial-card {
      background: var(--muted);
      padding: 32px;
      border-radius: var(--radius-lg);
    }
    .testimonial-text {
      font-style: italic;
      font-size: 16px;
      line-height: 1.6;
      color: var(--foreground);
      margin-bottom: 24px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .author-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .author-info h4 {
      margin: 0;
      font-size: 15px;
      font-weight: 600;
    }
    .author-info p {
      margin: 4px 0 0 0;
      font-size: 13px;
      color: var(--muted-foreground);
    }

    .contact-bar {
      background-color: var(--primary);
      color: var(--primary-foreground);
      padding: 64px 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .contact-item h4 {
      font-size: 16px;
      margin: 0 0 16px 0;
      opacity: 0.9;
    }
    .contact-item p,
    .contact-item a {
      margin: 0;
      color: var(--primary-foreground);
      text-decoration: none;
      font-size: 14px;
      line-height: 1.6;
      opacity: 0.8;
    }
    .social-links {
      display: flex;
      gap: 16px;
    }
    .social-icon {
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-md);
    }
    .footer {
      background-color: var(--foreground);
      color: var(--background);
      padding: 32px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--muted-foreground);
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      color: var(--muted-foreground);
      text-decoration: none;
    }
    


    /* Page Header */
    .page-header {
      background-color: var(--muted);
      padding: 80px 0;
      text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .page-title {
      font-size: 48px;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }
    .page-subtitle {
      font-size: 18px;
      max-width: 640px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Services Grid */
    .services-overview {
      padding: 80px 0;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }
    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: all 0.2s;
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      border-color: var(--accent);
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
      transform: translateY(-4px);
    }
    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--secondary);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--primary);
    }
    .service-title {
      font-size: 20px;
      margin-bottom: 12px;
    }
    .service-list {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
      flex: 1;
    }
    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--muted-foreground);
      margin-bottom: 8px;
    }
    .service-list li::before {
      content: "•";
      color: var(--accent);
      font-weight: bold;
    }

    /* Deep Dive Sections */
    .detail-section {
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }
    .detail-section:nth-of-type(even) {
      background-color: var(--muted);
    }
    .detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .detail-content h2 {
      font-size: 32px;
      margin-bottom: 16px;
    }
    .detail-content p {
      font-size: 16px;
      line-height:24px;
      margin-bottom: 16px;
      font-weight:400;
    }
    .detail-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .detail-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* CTA Section */
    .cta-section {
      background-color: var(--primary);
      color: white;
      padding: 80px 0;
      text-align: center;
    }
    .cta-content h2 {
      color: white;
      font-size: 36px;
      margin-bottom: 16px;
    }
    .cta-content p {
      color: rgba(255,255,255,0.8);
      font-size: 18px;
      margin-bottom: 32px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Footer */
    footer {
      background-color: #020617;
      color: #94a3b8;
      padding: 64px 0 24px;
      margin-top: auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      margin-bottom: 64px;
    }
    .footer-col h4 {
      color: white;
      font-size: 16px;
      margin-bottom: 24px;
    }
    .footer-link {
      display: block;
      margin-bottom: 12px;
      font-size: 14px;
      transition: color 0.2s;
    }
    .footer-link:hover {
      color: var(--accent);
    }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }

    @media (max-width: 900px) {
      .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .detail-section:nth-of-type(even) .detail-grid {
        /* Reorder so text is always first on mobile if desired, or keep image top */
      }
      .page-title {
        font-size: 36px;
      }
    }


    /* Page Layout */
    .article-header {
      padding: 64px 0 48px;
      border-bottom: 1px solid var(--border);
      background-color: var(--muted);
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--muted-foreground);
      margin-bottom: 32px;
    }
    .breadcrumb a:hover {
      color: var(--primary);
      text-decoration: underline;
    }
    .article-title {
      font-size: 42px;
      margin-bottom: 16px;
      max-width: 900px;
    }
    .article-meta {
      display: flex;
      gap: 24px;
      align-items: center;
      font-size: 14px;
      color: var(--muted-foreground);
    }
    .meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .content-wrapper {
      padding: 64px 0;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 64px;
    }

    /* Main Content */
    .article-body h2 {
      font-size: 28px;
      margin: 48px 0 24px;
    }
    .article-body h3 {
      font-size: 22px;
      margin: 32px 0 16px;
    }
    .article-body p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 24px;
    }
    
    .highlight-box {
      background-color: #f8fafc;
      border-left: 4px solid var(--accent);
      padding: 24px;
      margin: 32px 0;
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }

    .process-steps {
      display: grid;
      gap: 24px;
      margin: 32px 0;
    }
    .step-item {
      display: flex;
      gap: 16px;
    }
    .step-number {
      width: 32px;
      height: 32px;
      background-color: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      flex-shrink: 0;
    }

    /* Sidebar */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .sidebar-widget {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    .widget-title {
      font-size: 18px;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .service-price {
      font-size: 32px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .price-sub {
      font-size: 14px;
      color: var(--muted-foreground);
      margin-bottom: 24px;
    }

    .related-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .related-list li {
      margin-bottom: 12px;
    }
    .related-list a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--foreground);
      font-size: 15px;
      padding: 8px;
      border-radius: var(--radius-md);
      transition: background 0.2s;
    }
    .related-list a:hover {
      background-color: var(--secondary);
      color: var(--accent);
    }

    /* Footer */
    footer {
      background-color: #020617;
      color: #94a3b8;
      padding: 64px 0 24px;
      margin-top: auto;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 48px;
      margin-bottom: 64px;
    }
    .footer-col h4 {
      color: white;
      font-size: 16px;
      margin-bottom: 24px;
    }
    .footer-link {
      display: block;
      margin-bottom: 12px;
      font-size: 14px;
      transition: color 0.2s;
    }
    .footer-link:hover {
      color: var(--accent);
    }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }

    @media (max-width: 900px) {
      .content-wrapper {
        grid-template-columns: 1fr;
      }
      .article-title {
        font-size: 32px;
      }
    }



    /* Main Content */
    .page-header {
      background-color: var(--muted);
      padding: 64px 0;
      text-align: center;
    }
    .page-title {
      font-size: 48px;
      margin-bottom: 16px;
    }
    .page-subtitle {
      font-size: 18px;
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-layout {
      padding: 80px 0;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 64px;
    }

    /* Contact Info Side */
    .info-card {
      display: flex;
      gap: 24px;
      margin-bottom: 40px;
    }
    .info-icon {
      width: 48px;
      height: 48px;
      background-color: var(--secondary);
      color: var(--primary);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .info-content h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }
    .info-content p, .info-content a {
      font-size: 16px;
      color: var(--muted-foreground);
      display: block;
      margin-bottom: 4px;
    }
    .info-content a:hover {
      color: var(--accent);
    }

    .map-container {
      width: 100%;
      height: 300px;
      background-color: var(--secondary);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-top: 40px;
      position: relative;
    }
    .map-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Form Side */
    .contact-form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    .form-group {
      margin-bottom: 24px;
    }
    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
      color: var(--foreground);
    }
    .form-input, .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      font-size: 15px;
      font-family: inherit;
      background: var(--background);
      transition: border-color 0.2s;
    }
    .form-input:focus, .form-textarea:focus {
      outline: none;
      border-color: var(--accent);
      ring: 2px solid rgba(212, 175, 55, 0.1);
    }
    .form-textarea {
      min-height: 160px;
      resize: vertical;
    }

    .social-section {
      margin-top: 40px;
    }
    .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 16px;
    }
    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--foreground);
      transition: all 0.2s;
    }
    .social-btn:hover {
      background-color: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    /* FAQ Section */
    .faq-section {
      background-color: var(--secondary);
    }
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      margin-bottom: 16px;
      overflow: hidden;
      transition: all 0.2s ease;
    }
    .faq-item:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .faq-question {
      width: 100%;
      padding: 24px;
      background: none;
      border: none;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      color: var(--foreground);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.2s;
    }
    .faq-question:hover {
      background-color: var(--muted);
    }
    .faq-question.active {
      background-color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .faq-icon {
      font-size: 20px;
      color: var(--accent);
      transition: transform 0.2s;
    }
    .faq-question.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-answer.open {
      max-height: 300px;
    }
    .faq-answer-content {
      padding: 0 24px 24px 24px;
      color: var(--muted-foreground);
      line-height: 1.6;
      font-size: 14px;
    }

    /* Responsive Design - Tablet */
    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }
      
      /* Header */
      .site-header {
        padding: 15px 0;
      }
      
      .header-inner {
        justify-content: space-between;
      }
      
      .nav-menu {
        display: none;
      }
      
      .mobile-menu-toggle {
        display: flex;
      }
      
      .mobile-menu {
        display: flex;
      }
      
      /* Hero Section */
      .hero {
        padding: 60px 0;
      }
      
      .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
      }
      
      .hero-headline {
        font-size: 36px;
      }
      
      .hero-subtext {
        font-size: 16px;
        max-width: 100%;
      }
      
      .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
      }
      
      .hero-actions .btn {
        width: 100%;
        max-width: 250px;
      }
      
      /* About Section */
      .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
      
      .about-image {
        max-width: 400px;
        margin: 0 auto;
      }
      
      .milestones {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
      }
      
      /* Services Section */
      .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
      }
      
      .service-card {
        padding: 24px 20px;
      }
      
      /* Form Section */
      .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .service-form {
        padding: 32px 24px;
      }
      
      /* Testimonials */
      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      
      /* Contact Bar */
      .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
      
      /* FAQ Section */
      .faq-question {
        padding: 20px;
        font-size: 15px;
      }
      
      .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 13px;
      }
      
      /* Typography */
      .section-title {
        font-size: 28px;
      }
      
      .section-subtitle {
        font-size: 16px;
      }
      
      .section {
        padding: 60px 0;
      }
    }

    /* Responsive Design - Mobile */
    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }
      
      /* Header */
      .site-header {
        padding: 12px 0;
      }
      
      .logo img {
        height: 40px !important;
      }
      
      .nav-menu {
        display: none;
      }
      
      .mobile-menu-toggle {
        display: flex;
        width: 36px;
        height: 36px;
      }
      
      .hamburger-line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
      }
      
      .mobile-menu {
        padding: 60px 16px 20px;
      }
      
      .mobile-nav-link {
        font-size: 16px;
      }
      
      .mobile-cta-button {
        height: 44px;
        font-size: 14px;
        padding: 0 24px;
      }
      
      /* Hero Section */
      .hero {
        padding: 40px 0;
      }
      
      .hero-headline {
        font-size: 28px;
        line-height: 1.3;
      }
      
      .hero-subtext {
        font-size: 15px;
      }
      
      .hero-actions .btn {
        height: 44px;
        font-size: 14px;
      }
      
      .hero-image-wrapper {
        order: -1;
      }
      
      /* About Section */
      .about-text-content h2 {
        font-size: 24px !important;
      }
      
      .about-text-content p {
        font-size: 15px;
      }
      
      .milestones {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding-top: 20px;
        margin-top: 20px;
      }
      
      .milestone-item {
        text-align: center;
      }
      
      .milestone-item h4 {
        font-size: 28px;
      }
      
      /* Services Section */
      .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }
      
      .service-card {
        padding: 20px 16px;
      }
      
      .service-card h3 {
        font-size: 18px;
      }
      
      .service-list li {
        font-size: 13px;
      }
      
      /* Form Section */
      .service-form {
        padding: 24px 20px;
      }
      
      .form-label {
        font-size: 13px;
      }
      
      .form-input,
      .form-select,
      .form-textarea {
        font-size: 14px;
        padding: 10px 14px;
      }
      
      .btn {
        height: 44px;
        font-size: 14px;
        padding: 0 24px;
      }
      
      /* Contact Bar */
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
      }
      
      .contact-item h4 {
        font-size: 16px !important;
      }
      
      .contact-item p {
        font-size: 13px;
      }
      
      .social-links {
        justify-content: center;
      }
      
      /* Footer */
      .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
      
      .footer-links {
        flex-direction: column;
        gap: 12px;
      }
      
      /* FAQ Section */
      .faq-question {
        padding: 16px;
        font-size: 14px;
      }
      
      .faq-answer-content {
        padding: 0 16px 16px 16px;
        font-size: 13px;
      }
      
      /* Typography */
      .section-title {
        font-size: 24px;
      }
      
      .section-subtitle {
        font-size: 15px;
      }
      
      .section {
        padding: 40px 0;
      }
      
      .section-header {
        margin-bottom: 40px;
      }
      
      /* Detail Sections */
      .detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      
      .detail-content h2 {
        font-size: 24px;
      }
      
      .detail-content p {
        font-size: 15px;
      }
      
      /* Page Headers */
      .page-header {
        padding: 60px 0 40px 0;
      }
      
      .page-title {
        font-size: 32px;
      }
      
      .page-subtitle {
        font-size: 16px;
      }
    }
