    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: #fff;
      min-width: 1280px;
      overflow-x: auto;
      color: #111;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #000;
      padding: 20px 60px;
    }

    header .logo {
      color: white;
      font-size: 24px;
      font-weight: bold;
    }

    nav ul {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      position: relative;
    }

    nav a:hover {
      color: #d49e63;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 60px;
      background: url(GBBarber-header-bg.jpg) no-repeat center center/cover;
      color: white;
      height: 100vh;
    }

    .hero-text {
      max-width: 50%;
    }

    .hero-text h2 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .hero-text p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .appointment-btn {
      background: #d49e63;
      padding: 15px 30px;
      border: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      color: black;
    }

    .experience-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      padding: 80px 60px;
      background-color: #fff;
    }

    .experience-image {
      position: relative;
      width: 400px;
    }

    .experience-image img {
      width: 100%;
      border: 5px solid white;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      position: relative;
      z-index: 2;
    }

    .experience-image::before {
      content: "";
      position: absolute;
      top: -20px;
      left: -20px;
      width: 100%;
      height: 100%;
      background: #d49e63;
      z-index: 1;
    }

    .experience-text {
      max-width: 600px;
    }

    .experience-text h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #555;
    }

    .experience-text h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #111;
    }

    .experience-text p {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 20px;
    }

    .signature {
      font-family: cursive;
      font-size: 24px;
      color: #000;
    }

    @media (max-width: 768px) {
      .hero, .experience-section {
        flex-direction: column;
        text-align: center;
      }

      .hero-text, .experience-text {
        max-width: 100%;
      }

      .experience-image {
        margin-bottom: 30px;
      }

      nav ul {
        flex-direction: column;
        gap: 10px;
      }
    }

    .services-section {
        padding: 80px 60px;
        background-color: #fff;
        text-align: center;
    }

    .services-header p {
        color: #888;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .services-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: #111;
        margin-top: 10px;
        line-height: 1.3;
    }

    .services-container {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .service-card {
        background-color: #f9f9f9;
        padding: 40px 20px;
        border-radius: 8px;
        width: 300px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .icon-box {
        background-color: #11182c;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        border-radius: 4px;
        position: relative;
    }

    .icon-box::after {
        content: '';
        position: absolute;
        top: -12px;
        right: -12px;
        width: 40px;
        height: 40px;
        background-image: radial-gradient(#d49e63 1px, transparent 1px);
        background-size: 6px 6px;
        z-index: -1;
    }

    .service-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #111;
    }

    .service-card p {
        color: #555;
        font-size: 14px;
        line-height: 1.6;
    }

    .team-section {
        padding: 80px 60px;
        background: #fff;
        text-align: center;
    }

    .team-header p {
        font-weight: 600;
        color: #888;
        margin-bottom: 10px;
    }

    .team-header h2 {
        font-size: 36px;
        font-weight: 800;
        color: #111;
        line-height: 1.3;
    }

    .team-container {
        display: flex;
        gap: 30px;
        justify-content: center;
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .team-card {
        position: relative;
        width: 300px;
        overflow: hidden;
    }

    .team-card img {
        width: 100%;
        border-radius: 6px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    }

    .team-info {
        background: url('https://i.imgur.com/vQ2FqJh.png') no-repeat center center;
        background-size: contain;
        text-align: center;
        color: white;
        padding: 20px 0;
        margin-top: -40px;
        position: relative;
        z-index: 2;
    }

    .team-info .role {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        color: black;
    }

    .team-info h3 {
        font-size: 16px;
        font-weight: 800;
        margin-top: 5px;
        color: black;
    }

    .pricing-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 60px 40px;
      gap: 50px;
    }

    .pricing-images {
      position: relative;
      max-width: 500px;
    }

    .pricing-images img.bg-img {
      width: 100%;
      border-radius: 6px;
    }

    .pricing-images img.fg-img {
      position: absolute;
      width: 80%;
      border: 8px solid #c58b52;
      border-radius: 6px;
      bottom: -70px;
      right: 200px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .pricing-text {
      max-width: 600px;
    }

    .pricing-text p {
      font-weight: 600;
      color: #555;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .pricing-text h2 {
      font-size: 32px;
      font-weight: 900;
      color: #111;
      margin-bottom: 30px;
      line-height: 1.4;
    }

    .pricing-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 30px;
      font-weight: 600;
      font-size: 16px;
      color: #333;
    }

    .pricing-list div {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dotted #999;
      padding-bottom: 5px;
    }

    .pricing-list div span.price {
      color: #c58b52;
    }

    @media (max-width: 768px) {
      .pricing-section {
        flex-direction: column;
        padding: 40px 20px;
      }

      .pricing-images img.fg-img {
        position: static;
        width: 100%;
        margin-top: 20px;
      }

      .pricing-list {
        grid-template-columns: 1fr;
      }
    }

    .gallery-section {
      text-align: center;
      padding: 60px 20px;
    }

    .gallery-section small {
      text-transform: uppercase;
      font-weight: 600;
      color: #888;
      letter-spacing: 1px;
    }

    .gallery-section h2 {
      font-size: 32px;
      font-weight: 900;
      margin-top: 10px;
      margin-bottom: 40px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .gallery-grid img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-grid img:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .gallery-section h2 {
        font-size: 24px;
      }
    }

    .testimonial-section {
      background: #0e0e0e;
      background-size: cover;
      padding: 80px 20px;
      position: relative;
    }

    .testimonial-container {
      max-width: 1100px;
      margin: auto;
      display: flex;
      gap: 40px;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .testimonial {
      background-color: rgba(0, 0, 0, 0.6);
      padding: 40px;
      max-width: 500px;
      border-radius: 8px;
      position: relative;
      flex: 0 0 100%;
      box-sizing: border-box;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial .quote-icon {
      width: 40px;
      height: 40px;
      border: 2px solid #fff;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .testimonial p {
      font-size: 15px;
      line-height: 1.6;
      color: #eee;
    }

    .testimonial .name {
      font-size: 13px;
      color: #e1b05a;
      text-transform: uppercase;
      margin-top: 20px;
      display: inline-block;
      border-top: 1px solid #999;
      padding-top: 8px;
    }

    .testimonial-slider {
      display: flex;
      transition: transform 0.6s ease;
    }

    .dots {
      text-align: center;
      margin-top: 30px;
    }

    .dot {
      display: inline-block;
      height: 8px;
      width: 24px;
      background-color: #444;
      margin: 0 5px;
      border-radius: 4px;
      cursor: pointer;
    }

    .dot.active {
      background-color: #e1b05a;
    }

    @media (max-width: 768px) {
      .testimonial-container {
        flex-direction: column;
      }

      .testimonial {
        max-width: 90%;
      }
    }


    .blog-section {
      text-align: center;
      padding: 80px 20px;
    }

    .blog-section h5 {
      text-transform: uppercase;
      color: #999;
      font-size: 14px;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .blog-section h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 50px;
      color: #0e0e0e;
    }

    .blog-cards {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .blog-card {
      background-color: #fff;
      max-width: 400px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-image {
      position: relative;
    }

    .blog-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .date-badge {
      position: absolute;
      bottom: 0;
      left: 0;
      background-color: #000;
      color: #fff;
      padding: 12px 20px;
      text-align: center;
      font-size: 14px;
    }

    .date-badge span {
      display: block;
      font-size: 20px;
      font-weight: 700;
    }

    .blog-content {
      padding: 25px 20px;
      text-align: left;
    }

    .blog-meta {
      color: #888;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .blog-title {
      font-size: 18px;
      font-weight: 700;
      color: #0e0e0e;
      margin-bottom: 15px;
      line-height: 1.4;
    }

    .read-more {
      font-size: 13px;
      color: #e1b05a;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .blog-section h2 {
        font-size: 28px;
      }

      .blog-cards {
        flex-direction: column;
        align-items: center;
      }
    }

    .footer {
      background-color: #0d0d0d;
      background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
      padding: 80px 40px 40px;
      position: relative;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      max-width: 1300px;
      margin: auto;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-logo img {
      width: 40px;
    }

    .footer-logo h3 {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
    }

    .footer-description {
      font-size: 14px;
      color: #aaa;
      margin-bottom: 20px;
    }

    .footer-contact {
      font-size: 18px;
      color: #fff;
      font-weight: bold;
    }

    .footer-contact span {
      color: #e39b4e;
    }

    .footer-email {
      color: #aaa;
      font-size: 14px;
      margin-top: 10px;
    }

    .footer h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul li a {
      color: #aaa;
      text-decoration: none;
      font-size: 14px;
    }

    .footer ul li a:hover {
      color: #e39b4e;
    }

    .newsletter {
      max-width: 280px;
    }

    .newsletter p {
      color: #aaa;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .newsletter input {
      width: 100%;
      padding: 10px 15px;
      background-color: #111c2b;
      border: none;
      color: #fff;
      margin-bottom: 10px;
    }

    .newsletter button {
      padding: 10px 15px;
      background-color: #111c2b;
      color: #e39b4e;
      border: none;
      cursor: pointer;
      font-weight: 600;
      text-transform: uppercase;
    }

    .newsletter button:hover {
      opacity: 0.9;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      color: #aaa;
      font-size: 13px;
      position: relative;
    }

    .footer-bottom i {
      color: #e39b4e;
    }

    .social-icons {
      margin-top: 10px;
    }

    .social-icons a {
      color: #aaa;
      margin: 0 10px;
      font-size: 14px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #e39b4e;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
      }

      .newsletter {
        margin: auto;
      }
    }