body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
    }
    .top-bar {
      background-color: #dd6e42;
      color: white;
      font-size: 0.875rem;
      padding: 5px 20px;
    }
    .top-bar i {
      margin-right: 5px;
    }
    .navbar {
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
    }
    .navbar-brand img {
      height: 100px;
    }
    .nav-link {
      color: #333;
      font-weight: 500;
      margin-left: 1rem;
    }
    .nav-link:hover {
      color: #dd6e42;
    }
    .hero {
      
      position: relative;
      color: white;
      padding: 100px 0;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero h6 {
      font-size: 0.75rem;
      letter-spacing: 1px;
      font-weight: 600;
    }
    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    .highlight {
      color: #cba68a;
    }
    .btn-custom {
      background-color: #dd6e42;
      color: white;
      font-weight: 500;
      border: none;
      padding: 0.75rem 1.25rem;
    }
    .btn-custom:hover {
      background-color: #c25a2e;
    }
    .form-box {
      background: rgba(255,255,255,0.95);
      padding: 30px;
      border-radius: 4px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .form-box .form-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      font-weight: 600;
      color: #666;
      letter-spacing: 1px;
    }
    .form-box .btn {
      background-color: #dd6e42;
      color: white;
      font-weight: 500;
    }
    .form-box .btn:hover {
      background-color: #c25a2e;
    }

    .resurface-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
    }

    .resurface-item {
      background: #f8f9fa;
      border-radius: 0.5rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
      padding: 1rem;
      transition: transform 0.2s ease;
    }

    .resurface-item img {
      max-width: 100%;
      height: auto;
      border-radius: 0.25rem;
    }

    .resurface-item:hover {
      transform: translateY(-4px);
    }

    .footer { 
      background-color: black; 
      color: white; 
      text-align: center; 
      padding: 25px 10px; 
    }
    
    /* Optional: Smooth scrolling */
    html {
      scroll-behavior: smooth;
    }
    
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #dd6e42;
      color: white;
      border-radius: 50%;
      padding: 10px 14px;
      font-size: 1.75rem;
      text-align: center;
      z-index: 999;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      display: none;
    }

    #backToTop:hover {
      background-color: #e66836;
      transform: translateY(-3px);
    }

body {
      font-family: 'Segoe UI', sans-serif;
    }
    .top-bar {
      background-color: #dd6e42;
      color: white;
      font-size: 0.875rem;
      padding: 5px 20px;
    }
    .navbar {
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
    }
    .navbar-brand img {
      height: 100px;
    }
    .nav-link {
      color: #333;
      font-weight: 500;
      margin-left: 1rem;
    }
    .nav-link:hover {
      color: #dd6e42;
    }
    .hero {
      
      position: relative;
      color: white;
      padding: 120px 0;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero h1 {
      font-weight: 700;
      font-size: 2.75rem;
    }
    .btn-custom {
      background-color: #dd6e42;
      color: white;
      font-weight: 500;
      border: none;
    }
    .btn-custom:hover {
      background-color: #c25a2e;
    }
    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 5px;
    }
    .footer {
      background-color: black;
      color: white;
      text-align: center;
      padding: 25px 10px;
    }