    /* Reset and base */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      padding: 40px 0px 0 0px;
      font-family: 'Georgia', serif, system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
        'Helvetica Neue', sans-serif;
      color: #111111;
      background-color: white;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }
    a {
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }
    a:focus {
      outline: 2px solid #ff0055;
      outline-offset: 2px;
    }

    /* Theme colors */
    .theme-main {
      color: #c4a890;
    }
    .theme-accent {
      color: #ff0055;
    }
    .btn-accent {
      background-color: #ff0055;
      color: white;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1.125rem;
      display: inline-block;
      box-shadow: 0 4px 8px rgba(255, 0, 85, 0.3);
      transition: background-color 0.3s ease;
    }
    .btn-accent:hover,
    .btn-accent:focus {
      background-color: #cc0044;
      box-shadow: 0 6px 12px rgba(204, 0, 68, 0.5);
    }

    /* Header */
    header {
      max-width: 1200px;
      margin: 0 auto 40px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 0 24px;
      position: relative;
      z-index: 1001;
    }
    .logo-container {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-grow: 1;
    }
    .logo-placeholder {
      width: 100px;
      height: 125px;
      user-select: none;
    }
    .logo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    h1.site-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #c4a890;
      user-select: none;
      flex-grow: 1;
    }
    nav {
      display: flex;
      gap: 32px;
      font-weight: 500;
      font-size: 1.125rem;
      padding: 0 24px;
      flex-wrap: wrap;
      justify-content: center;
    }
    nav a {
      position: relative;
      width: 90px;
      text-align: center;
      color: #c4a890;
      transition: color 0.3s ease;
      padding-bottom: 4px;
      user-select: none;
    }
    nav a:hover,
    nav a:focus {
      color: #ff0055;
      outline: none;
    }
    nav a.active {
      color: #ff0055;
      font-weight: 700;
    }
    nav a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #ff0055;
      border-radius: 2px;
    }

    /* Hamburger menu button */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 14px; /* reduced height to pack lines closer */
      cursor: pointer;
      z-index: 1100;
      background: none;
      border: none;
      padding: 0;
      margin-left: 8px;
      transition: opacity 0.3s ease;
    }
    .hamburger:hover,
    .hamburger:focus {
      opacity: 0.7;
      outline: none;
    }
    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background-color: #c4a890;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Side menu */
    .side-menu {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100vh;
      background-color: white;
      box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
      padding-top: 80px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-left: 24px;
      padding-right: 24px;
      box-sizing: border-box;
      transition: left 0.3s ease;
      z-index: 1050;
      overflow-y: auto;
    }
    .side-menu.open {
      left: 0;
    }
    .side-menu a {
      font-weight: 600;
      font-size: 1.25rem;
      color: #c4a890;
      padding-bottom: 4px;
      user-select: none;
      position: relative;
    }
    .side-menu a:hover,
    .side-menu a:focus {
      color: #ff0055;
      outline: none;
    }
    .side-menu a.active {
      color: #ff0055;
      font-weight: 700;
    }
    .side-menu a.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: #ff0055;
      border-radius: 2px;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.3);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 1040;
    }
    .overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    /* Main section */
    main {
      max-width: 1200px;
      margin: 0 auto 64px auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 48px;
      padding: 0 24px;
      flex-grow: 1;
    }
    main .text-content {
      flex: 1 1 400px;
      max-width: 600px;
    }
    main h2 {
      font-size: 2.5rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 16px;
      color: #c4a890;
      user-select: none;
    }
    main p.description {
      font-size: 1.125rem;
      color: #555555;
      margin-bottom: 12px;
      line-height: 1.4;
    }
    main p.tagline {
      font-style: italic;
      font-weight: 700;
      font-size: 1rem;
      color: #ff0055;
      letter-spacing: 0.05em;
      margin-bottom: 24px;
      user-select: none;
    }
    main .image-container {
      flex: 1 1 320px;
      max-width: 320px;
    }
    main .image-container img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      display: block;
      user-select: none;
    }

    /* Section split */
    section.section-split {
      border-top: 3px solid #c4a890;
      margin-top: 64px;
      padding-top: 48px;
      background-color: #f5f5f5;
      width: 100vw;
      padding-left: 24px;
      padding-right: 24px;
      box-sizing: border-box;
    }
    section.section-split h3 {
      display: inline-block;
      background: #f5f5f5;
      padding: 0 16px;
      font-weight: 700;
      font-size: 1.5rem;
      color: #c4a890;
      margin-bottom: 32px;
      user-select: none;
    }
    section.section-split > div {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 32px;
    }
    section.section-split a.offer-box {
      flex: 1 1 280px;
      max-width: 320px;
      min-height: 420px;
      background: white;
      border: 2px solid rgba(255, 0, 85,0.2);
      border-radius: 12px;
      padding: 24px 16px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: inherit;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      user-select: none;
    }
    section.section-split a.offer-box:hover,
    section.section-split a.offer-box:focus {
      box-shadow: 0 8px 20px rgba(255, 0, 85, 0.3);
      transform: translateY(-6px);
      outline: none;
    }
    section.section-split a.offer-box img {
      border-radius: 12px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      user-select: none;
    }
    section.section-split a.offer-box h4 {
      font-size: 1.25rem;
      font-weight: 600;
      color: #c4a890;
      margin-bottom: 8px;
      user-select: none;
    }
    section.section-split a.offer-box p.description {
      color: #4a4a4a;
      font-size: 0.9rem;
      margin-bottom: 12px;
      flex-grow: 1;
      padding: 0 8px;
      user-select: text;
    }
    section.section-split a.offer-box p.price {
      font-weight: 700;
      color: #ff0055;
      margin-bottom: 8px;
      user-select: none;
    }
    section.section-split a.offer-box p.info {
      font-size: 0.75rem;
      color: #888888;
      padding: 0 8px;
      user-select: none;
    }

    /* Footer */
	footer {
	  width: 100%;
	  background-color: #f5f5f5;
	  box-sizing: border-box;
	  user-select: none;
	  
	  /* Remove border-top from here */
	  /* border-top: 3px solid #c4a890; */
	  
	  /* Optional: to ensure footer doesn't add extra horizontal scroll */
	  overflow: hidden;
	  padding-top: 3px; /* To make space for the pseudo element */
	  position: relative;
	  margin-top:50px;
	}

	footer::before {
	  content: "";
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 100vw; /* Full viewport width */
	  height: 3px; /* Border thickness */
	  background-color: #c4a890;
	  z-index: 1;
	}

	/* Inner content container */
	.footer_content {
	  max-width: 1200px;
	  margin: 0 auto;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  padding: 12px 24px;
	  box-sizing: border-box;
	  font-size: 0.875rem;
	  color: #555555;
	  flex-wrap: wrap;
	  gap: 12px;
	  position: relative;
	  z-index: 2; /* above the border */
	}
    footer .left,
    footer .center,
    footer .right {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    footer .left a,
    footer .center a,
    footer .right a {
      color: #c4a890;
      font-weight: 600;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    footer .left a:hover,
    footer .center a:hover,
    footer .right a:hover {
      color: #ff0055;
    }

    /* Dropdown styles */
    .dropdown-container {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .dropdown-item {
      background: white;
      border: 2px solid rgba(255, 0, 85, 0.1);
      border-radius: 8px;
      overflow: hidden;
 /*     transition: all 0.4s ease; */
    }
    
    .dropdown-header {
      padding: 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }
    
    .dropdown-title-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
    }
    
    .dropdown-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #c4a890;
      margin: 0;
      flex-grow: 1;
    }
    .dropdown-arrow {
      transition: transform 0.5s ease;
      color: #c4a890;
      font-size: 0.9rem;
      margin-left: auto;
    }
    
    .dropdown-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
      background: #fefefe;
    }
    
    .dropdown-content-inner {
      padding: 0 16px 16px;
      color: #555;
      transform-origin: top;
      transition: transform 0.3s ease;
    }
    
    .dropdown-item.active .dropdown-arrow {
      transform: rotate(180deg);
    }
    
    .dropdown-item.active .dropdown-content {
      max-height: 500px;
      border-top: 1px solid rgba(196, 168, 144, 0.1);
    }

    /* Responsive */
    @media (max-width: 1050px) {
	section.section-split {
 	   margin-left: calc(-50vw + 50%);
	}
      header {
        justify-content: flex-start;
        padding: 0 16px;
      }
      nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 250px;
        background: white;
        flex-direction: column;
        padding-top: 80px;
        padding-left: 24px;
        padding-right: 24px;
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        overflow-y: auto;
      }
      nav.open {
        display: flex;
      }
      nav a {
        width: auto;
        font-size: 1.25rem;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid #eee;
      }
      .hamburger {
        display: flex;
        align-items: center;
        height: 40px; /* reduced height */
        margin-left: 0;
      }
      .hamburger span {
        width: 28px;
        height: 3px;
        background-color: #c4a890;
        border-radius: 2px;
        transition: all 0.3s ease;
      }
      .hamburger:hover,
      .hamburger:focus {
        opacity: 0.7;
        outline: none;
      }
    }
