
    @font-face {font-family: roboto;
	src: url(../Roboto-Thin.ttf);}

	@font-face {font-family: afb;
	src: url(../AGENCYB.TTF);}

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 0;
      background-image: url('dummy.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      font-family: 'Arial', sans-serif;
      color: #fff;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      flex-wrap: wrap;
    }

    .menu-icon {
      display: grid;
      grid-template-columns: repeat(3, 10px);
      grid-template-rows: repeat(3, 10px);
      gap: 4px;
    }

    .menu-icon div {
      width: 10px;
      height: 10px;
      background-color: white;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }

    .nav-links a:hover{ color: #d4aa00; }
    .hero {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 40px 20px;
    }

    .hero-text {
      flex: 1 1 300px;
      max-width: 500px;
    }

    .hero-text span {
      display: block;
      font-size: 80px;
      font-weight: bold;
    }

    .hero-text h1 {
      font-size: 32px;
      margin-top: 10px;
    }

    .hero-image {
      flex: 1 1 300px;
      max-width: 500px;
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .hero-image img {
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
    }

    .content-sections {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 40px 20px;
    }

    .content-sections h3{ color: #d4aa00;}

    .section {
      flex: 1 1 250px;
      margin: 20px 10px;
      text-align: left;
    }

    .section h3 {
      font-size: 18px;
    }

    .section p {
      font-size: 14px;
      margin: 5px 0;
    }

    .section a {
      font-size: 12px;
      font-weight: bold;
      color: white;
      text-decoration: none;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      justify-content: flex-end;
      padding: 20px;
      font-size: 12px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .hero-text span {
        font-size: 60px;
      }

      .hero-text h1 {
        font-size: 24px;
      }

      .section {
        flex: 1 1 100%;
        text-align: center;
      }

      .nav-links {
        justify-content: center;
        margin-top: 10px;
      }

      .social-icons {
        justify-content: center;
      }
    }