* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    :root {
      --dark-gray: #333333;
      --light-gray: #f5f5f5;
      --medium-gray: #777777;
      --accent-gray: #555555;
      --white: #ffffff;
      --primary: #4a4a4a;
      --secondary: #686868;
      --accent: #8f8f8f;
      --hover-color: #3d3d3d;
      --gold: #d4af37;
      --gradient-primary: linear-gradient(135deg, #4a4a4a, #686868);
      --gradient-accent: linear-gradient(135deg, #8f8f8f, #4a4a4a);
    }

    body {
      background-color: var(--light-gray);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 5%;
      background-color: var(--white);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 3px solid #e6e6e6;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 80px;
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    


    .nav-links {
      display: flex;
      list-style: none;
    }

    .nav-links li {
      position: relative;
      margin-left: 1.5rem;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--dark-gray);
      font-weight: 600;
      font-size: 1.1rem;
      padding: 0.7rem 1rem;
      transition: all 0.3s ease;
      border-radius: 4px;
      position: relative;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .nav-links a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-links a:hover:before, 
    .nav-links a.active:before {
      width: 85%;
      left: 8%;
    }

    .nav-links a:hover, 
    .nav-links a.active {
      color: var(--hover-color);
      background-color: rgba(0,0,0,0.03);
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--white);
      min-width: 220px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      z-index: 1;
      border-radius: 6px;
      top: 100%;
      left: -20px;
      margin-top: 0.8rem;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      color: var(--dark-gray);
      padding: 14px 18px;
      text-decoration: none;
      display: block;
      text-align: left;
      border-bottom: 1px solid #eaeaea;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
      padding-left: 24px;
    }
    
    .dropdown-content a:before {
      content: '•';
      position: absolute;
      left: 12px;
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
      transform: translateX(-5px);
    }

    .dropdown-content a:hover:before {
      opacity: 1;
      transform: translateX(0);
    }

    .dropdown-content a:last-child {
      border-bottom: none;
    }

    .dropdown-content a:hover {
      background-color: #f9f9f9;
      padding-left: 30px;
    }

    .dropdown i {
      margin-left: 5px;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }
    
    .dropdown:hover i {
      transform: rotate(180deg);
    }

    .hamburger {
      display: none;
      cursor: pointer;
    }

    .bar {
      display: block;
      width: 25px;
      height: 3px;
      margin: 5px auto;
      transition: all 0.3s ease-in-out;
      background-color: var(--dark-gray);
    }


    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .hamburger.active .bar:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }

      .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links li {
        margin: 16px 0;
      }

      .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        min-width: 100%;
        background-color: var(--light-gray);
        border-radius: 0;
        margin-top: 10px;
      }

      .dropdown-content a {
        padding: 10px;
        text-align: center;
      }
      
      .dropdown:hover .dropdown-content {
        display: none;
      }
      
      .dropdown.active .dropdown-content {
        display: block;
      }
    }

    .active {
      font-weight: 700;
      position: relative;
    }
    
    .navbar:after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, transparent, rgba(150,150,150,0.2), transparent);
      background-size: 200% 100%;
      animation: gradient-shift 6s infinite linear;
    }
    
    @keyframes gradient-shift {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
    a {
      text-decoration: none;
      color: var(--primary);
      transition: color 0.3s ease;
    }
    a:hover,
    a:focus {
      color: var(--hover-color);
      outline: none;
    }

    header {
      background: var(--gradient-primary);
      padding: 2.5rem 1rem;
      color: var(--white);
      text-align: center;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.2);
      position: relative;
      overflow: hidden;
    }
    header h1 {
      margin: 0;
      font-weight: 800;
      font-size: 2.8rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-shadow: 2px 2px 6px rgb(0 0 0 / 0.3);
    }
    header p {
      margin: 0.7rem 0 0;
      font-weight: 400;
      font-size: 1.25rem;
      font-style: italic;
      opacity: 0.85;
      text-shadow: 1px 1px 3px rgb(0 0 0 / 0.2);
    }

    main {
      flex: 1;
      max-width: 1000px;
      margin: 3rem auto 4rem;
      padding: 0 1rem;
      animation: fadeSlideIn 1s ease forwards;
      opacity: 0;
      transform: translateY(30px);
    }

    section {
      margin-bottom: 3.5rem;
      background: var(--white);
      border-radius: 14px;
      box-shadow: 0 12px 25px rgb(0 0 0 / 0.07);
      padding: 2.75rem 3rem;
      border: 1.5px solid var(--accent);
      position: relative;
      overflow: hidden;
    }
    section::before {
      content: "";
      position: absolute;
      top: -40px;
      right: -60px;
      width: 150px;
      height: 150px;
      background: var(--gradient-primary);
      opacity: 0.1;
      border-radius: 50%;
      filter: blur(60px);
      z-index: 0;
      pointer-events: none;
    }

    h2 {
      color: var(--primary);
      margin-top: 0;
      font-weight: 700;
      font-size: 2rem;
      border-bottom: 4px solid var(--accent);
      padding-bottom: 0.35rem;
      max-width: max-content;
      position: relative;
      z-index: 1;
      letter-spacing: 0.9px;
    }

    ul.hours-list,
    ul.phone-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
      font-size: 1.15rem;
      color: var(--medium-gray);
      font-weight: 600;
      letter-spacing: 0.02em;
      position: relative;
      z-index: 1;
    }
    ul.hours-list li,
    ul.phone-list li {
      margin-bottom: 0.75rem;
      padding-left: 1.5rem;
      position: relative;
    }
    ul.hours-list li::before,
    ul.phone-list li::before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 1.65rem;
      line-height: 1;
      top: 4px;
      font-weight: 900;
    }

    ul.phone-list a {
      color: var(--primary);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      transition: color 0.3s ease;
      position: relative;
    }
    ul.phone-list a:hover,
    ul.phone-list a:focus {
      color: var(--hover-color);
      outline: none;
    }
    ul.phone-list a svg.phone-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      fill: var(--accent);
      animation: pulse 2.5s infinite ease-in-out alternate;
      transition: fill 0.3s ease;
      position: relative;
      top: 1px;
    }
    ul.phone-list a:hover svg.phone-icon,
    ul.phone-list a:focus svg.phone-icon {
      fill: var(--hover-color);
      animation-play-state: paused;
    }

    .social-links {
      display: flex;
      gap: 28px;
      margin-top: 1.8rem;
      position: relative;
      z-index: 1;
    }
    .social-link {
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 1.15rem;
      transition: color 0.35s ease, transform 0.3s ease;
      padding: 6px 8px;
      border-radius: 10px;
      user-select: none;
      box-shadow: 0 3px 6px rgb(0 0 0 / 0.12);
      background: var(--light-gray);
      border: 2px solid transparent;
      cursor: pointer;
      will-change: transform, color;
    }
    .social-link svg {
      width: 26px;
      height: 26px;
      fill: currentColor;
      flex-shrink: 0;
      transition: transform 0.35s ease;
      filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.1));
    }
    .social-link:hover,
    .social-link:focus {
      color: var(--hover-color);
      background: var(--white);
      border-color: var(--accent);
      transform: translateY(-4px);
      outline: none;
      box-shadow: 0 5px 15px rgb(0 0 0 / 0.15);
    }
    .social-link:hover svg,
    .social-link:focus svg {
      transform: scale(1.2);
      filter: drop-shadow(0 3px 5px rgb(0 0 0 / 0.18));
    }

    .map-container {
      width: 100%;
      height: 360px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 12px 34px rgb(0 0 0 / 0.12);
      border: 2px solid var(--accent);
      position: relative;
      z-index: 1;
    }
    iframe {
      border: none;
      width: 100%;
      height: 100%;
      display: block;
      border-radius: 14px;
    }


    footer {
      background: var(--gradient-accent);
      color: var(--white);
      text-align: center;
      padding: 1.15rem 1.5rem;
      font-weight: 500;
      font-size: 1rem;
      user-select: none;
      letter-spacing: 0.03em;
      box-shadow: inset 0 2px 8px rgb(0 0 0 / 0.3);
      text-transform: uppercase;
      font-family: 'Lato', sans-serif;
    }

    @keyframes pulse {
      0% {
        filter: drop-shadow(0 0 1px var(--animate-pulse-start));
      }
      50% {
        filter: drop-shadow(0 0 12px var(--animate-pulse-end));
      }
      100% {
        filter: drop-shadow(0 0 1px var(--animate-pulse-start));
      }
    }

    @keyframes fadeSlideIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 700px) {
      main {
        margin: 2rem auto 3.5rem;
        padding: 0 1.5rem;
      }
      section {
        padding: 2rem 2rem;
      }
      .social-links {
        justify-content: center;
      }
      h2 {
        font-size: 1.7rem;
      }
      ul.hours-list li, ul.phone-list li {
        font-size: 1rem;
      }
      .social-link {
        font-size: 1rem;
        padding: 5px 7px;
        gap: 7px;
      }
      .social-link svg {
        width: 22px;
        height: 22px;
      }
      ul.phone-list a svg.phone-icon {
        width: 20px;
        height: 20px;
      }
    }