 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.8;
            color: #2d3748;
            background: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            font-size: 18px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa84c 50%, #ffd93d 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 90%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }

        .site-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .site-name:hover {
            transform: scale(1.05);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 1rem;
        }

        nav a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            display: inline-block;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        }

        nav li:nth-child(1) a {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        nav li:nth-child(2) a {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        nav li:nth-child(3) a {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        nav li:nth-child(4) a {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        nav li:nth-child(5) a {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        nav a:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        nav a:active {
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            background: white;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ff6b9d;
            padding: 0.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        /* Main Container */
        .main-wrapper {
            flex: 1;
            margin-top: 90px;
            padding: 2rem 0;
        }

        .container {
            max-width: 90%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 2.5rem;
            padding: 2.5rem;
        }

        /* Main Content */
        .main-content {
            padding-right: 1.5rem;
        }

        .main-content h1 {
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa84c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            font-size: 2.8rem;
            line-height: 1.3;
        }

        .main-content h2 {
            color: #4299e1;
            margin: 2.5rem 0 1.5rem;
            font-size: 2.2rem;
        }

        .main-content p {
            margin-bottom: 1.5rem;
            color: #4a5568;
            font-size: 1.1rem;
        }

        /* Sidebar */
        .sidebar {
            padding-left: 1.5rem;
        }

        .sidebar-section {
            margin-bottom: 2.5rem;
        }

        .sidebar h3 {
            background: linear-gradient(135deg, #4299e1 0%, #9f7aea 100%);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
        }

        .article-links {
            list-style: none;
        }

        .article-links li {
            margin-bottom: 1rem;
        }

        .article-links a {
            text-decoration: none;
            color: #2d3748;
            display: flex;
            align-items: start;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 12px;
            background: #f7fafc;
            border: 2px solid #e2e8f0;
            font-size: 1.05rem;
            font-weight: 500;
        }

        .article-links a:hover {
            background: linear-gradient(135deg, #ffd93d 0%, #ffa84c 100%);
            color: white;
            transform: translateX(8px);
            border-color: #ffa84c;
            box-shadow: 0 4px 15px rgba(255, 168, 76, 0.4);
        }

        .article-links a::before {
            content: '🎨';
            margin-right: 0.8rem;
            font-size: 1.3rem;
        }

        .banner-container {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            border: 3px solid white;
        }

        /* Print Shop Cards */
        .shop-card {
            background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid #fdcb6e;
        }

        .shop-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(253, 203, 110, 0.4);
        }

        .shop-card h3 {
            color: #2d3748;
            margin-bottom: 1rem;
            font-size: 1.6rem;
        }

        .shop-card p {
            color: #4a5568;
            font-size: 1.05rem;
        }

        /* Info Cards */
        .info-card {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid #fed6e3;
        }

        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(254, 214, 227, 0.4);
        }

        .info-card h3 {
            color: #2d3748;
            margin-bottom: 1rem;
            font-size: 1.6rem;
        }

        /* Activity Card */
        .activity-card {
            background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid #fbc2eb;
        }

        .activity-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(251, 194, 235, 0.4);
        }

        .activity-card h3 {
            color: #2d3748;
            margin-bottom: 1rem;
            font-size: 1.6rem;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 2rem;
        }

        label {
            display: block;
            margin-bottom: 0.8rem;
            color: #2d3748;
            font-weight: 600;
            font-size: 1.15rem;
        }

        input[type="text"],
        input[type="email"],
        input[type="password"],
        textarea,
        select {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border: 3px solid #e2e8f0;
            border-radius: 12px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: white;
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #ffa84c;
            box-shadow: 0 0 0 4px rgba(255, 168, 76, 0.2);
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        button,
        .btn {
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa84c 100%);
            color: white;
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
        }

        button:hover,
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
        }

        button:active,
        .btn:active {
            transform: translateY(0);
        }

        /* Images */
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            border: 4px solid white;
        }

        .banner-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 16px;
            margin: 2rem 0;
        }

        /* Links */
        a {
            color: #4299e1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 600;
        }

        a:hover {
            color: #ff6b9d;
        }

        /* Tag/Badge */
        .tag {
            display: inline-block;
            background: linear-gradient(135deg, #4299e1 0%, #9f7aea 100%);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 600;
            margin-right: 0.5rem;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #ff6b9d 0%, #ffa84c 50%, #ffd93d 100%);
            padding: 2.5rem 0;
            margin-top: 3rem;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        }

        .footer-content {
            max-width: 90%;
            margin: 0 auto;
            text-align: center;
        }

        .footer-links {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        .footer-links a:hover {
            color: #2d3748;
        }

        .copyright {
            color: white;
            font-size: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body {
                font-size: 19px;
            }

            .header-container {
                padding: 1rem;
            }

            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: linear-gradient(135deg, #ff6b9d 0%, #ffa84c 100%);
                transition: left 0.3s ease;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
            }

            .mobile-menu-toggle {
                display: block;
            }
			
			.mobile-menu-toggle {
  width: auto;
  min-width: 40px;
  padding: 0.3rem 0.5rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}


            .container {
                grid-template-columns: 1fr;
                padding: 2rem;
				max-width: 98%;
            }

            .main-content {
                padding-right: 0;
            }

            .main-content h1 {
                font-size: 2.4rem;
            }

            .main-content h2 {
                font-size: 2rem;
            }

            .sidebar {
                padding-left: 0;
                border-top: 3px dashed #ffa84c;
                padding-top: 2.5rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1.5rem;
            }

            .banner-container {
                height: 200px;
                font-size: 1.2rem;
            }

            button,
            .btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 20px;
            }

            .site-name {
                font-size: 1.5rem;
            }

            .main-content h1 {
                font-size: 2rem;
            }

            .main-content h2 {
                font-size: 1.8rem;
            }

            .container {
                padding: 1.5rem;
            }

            .shop-card,
            .info-card,
            .activity-card {
                padding: 1.5rem;
            }
        }
		
/* 🌍 Country Accordion Styles */
.country-accordion {
  margin-top: 0.7rem;
}

.country-item {
  margin-bottom: 0.7rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 3px solid #fbd38d;
  background: #fffaf0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255,168,76,0.25);
}

/* Header / Summary */
.country-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.6rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa84c 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
  border: none;
}

.country-header::-webkit-details-marker {
  display: none; /* remove default triangle */
}


/* ▼ Accordion Arrow */
.country-header {
  position: relative;
  cursor: pointer;
}

.country-header::after {
  content: "▼";
  font-size: 2.4rem;
  color: #fff;
  margin-left: 0.6rem;
  transition: transform 0.3s ease;
}

/* When accordion is open → rotate arrow up */
.country-item[open] .country-header::after {
  transform: rotate(180deg);
}

.country-header::after {
  content: "▾"; /* slightly rounded arrow */
  font-size: 2.0rem;
  color: #fff;
  margin-left: 0.8rem;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Country flag and name */
.flag {
  margin-right: 0.8rem;
  font-size: 1.6rem;
}

.country-name {
  flex-grow: 1;
}

/* Content area */
.country-content {
  padding: 1.5rem;
  background: #fff;
  border-top: 3px solid #ffd93d;
}

/* State/Region Links */
.state-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.state-link {
  display: inline-block;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  color: #2d3748;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.state-link:hover {
  background: linear-gradient(135deg, #ffd93d 0%, #ffa84c 100%);
  color: #fff;
  border-color: #ffa84c;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255,168,76,0.4);
}

/* Country Links (view all / example) */
.country-links {
  font-size: 1.05rem;
  line-height: 1.6;
}

.country-links a {
  color: #4299e1;
  font-weight: 600;
  text-decoration: none;
}

.country-links a:hover {
  color: #ff6b9d;
  text-decoration: underline;
}

/* Smooth open/close animation */
.country-item[open] .country-content {
  animation: accordionOpen 0.4s ease forwards;
}

@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .country-header {
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
  }

  .flag {
    font-size: 1.4rem;
  }

  .state-list {
    gap: 0.6rem;
  }

  .state-link {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}


/* 🌈 Two Equal Cells Row – Mobile First */
/* 🌈 Base: mobile first – stacked */
.row-2cells {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  margin: 2rem 0;
  align-items: center;
}

/* Optional cell styling */
.cell {
  padding: 0.5rem;
  
}

.cell img {
  width: 100%;
  height: auto;
  display: block;
  
}

hr {
  border: none;
  border-top: 2px solid #ffa84c; /* or solid if you prefer */
  margin: 1.5rem 0; /* controls spacing above & below */
  opacity: 0.8;
}


/* 💻 On desktop: make them side-by-side */
@media (min-width: 768px) {
	
hr {
  border: none;
  border-top: 2px solid #ffa84c; /* or solid if you prefer */
  margin: 1.5rem 0; /* controls spacing above & below */
  opacity: 0.8;
}
  .row-2cells {
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
  }

  /* Optional: if image needs full height next to text */
  .cell.right {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cell.right img {
    max-width: 100%;
    height: auto;
  }
}
