#nuttyflavoursCant {
  background: linear-gradient(135deg, 
    #FFF8F0 0%, 
    #FFEEDD 25%, 
    #FFE0C2 50%, 
    #FFD8B1 75%, 
    #FFF0E1 100%);
  padding: 70px 15px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 
    0 10px 40px rgba(255, 164, 28, 0.15),
    0 0 0 1px rgba(255, 164, 28, 0.1);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

/* Animated background elements */
#nuttyflavoursCant::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 164, 28, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
  animation: floatBackground 20s linear infinite;
  z-index: 0;
}

#nuttyflavoursCant::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: shine 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes floatBackground {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

@keyframes shine {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#nuttyflavoursCant h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  animation: titleGlow 2s ease-in-out infinite alternate;
  font-family: 'Poppins', sans-serif;
}

/* Colorful animated title */
#nuttyflavoursCant h1 span {
  display: inline-block;
  background: linear-gradient(90deg, 
    #FF6B6B, 
    #FFA41C, 
    #FFD166, 
    #4ECDC4, 
    #45B7D1,
    #96CEB4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: rainbow 4s ease-in-out infinite alternate;
  position: relative;
  padding: 0 5px;
}

#nuttyflavoursCant h1 span::after {
  content: '🥜'; /* Nut emoji */
  display: inline-block;
  margin-left: 10px;
  animation: bounce 2s ease-in-out infinite;
  font-size: 2.8rem;
}

@keyframes rainbow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes titleGlow {
  0% { 
    text-shadow: 0 0 10px rgba(255, 164, 28, 0.5),
                  0 0 20px rgba(255, 164, 28, 0.3);
  }
  100% { 
    text-shadow: 0 0 20px rgba(255, 164, 28, 0.8),
                  0 0 40px rgba(255, 164, 28, 0.5),
                  0 0 60px rgba(255, 164, 28, 0.2);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

#nuttyflavoursCant p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #5D4037; /* Dark brown for better contrast */
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeIn 1.5s ease-out 0.5s both;
  font-weight: 400;
  padding: 0 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Animated separator line */
#nuttyflavoursCant .separator {
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent, 
    #FFA41C, 
    #FF6B6B, 
    #4ECDC4, 
    transparent);
  margin: 25px auto;
  border-radius: 2px;
  position: relative;
  z-index: 2;
  animation: expand 3s ease-in-out infinite;
}

@keyframes expand {
  0%, 100% { 
    transform: scaleX(0.7);
    opacity: 0.7;
  }
  50% { 
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Animated tags or features */
#nuttyflavoursCant .features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
  position: relative;
  z-index: 2;
  animation: slideInUp 1s ease-out 1s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#nuttyflavoursCant .feature-tag {
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #5D4037;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

#nuttyflavoursCant .feature-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  transition: left 0.6s ease;
}

#nuttyflavoursCant .feature-tag:hover::before {
  left: 100%;
}

#nuttyflavoursCant .feature-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-color: #FFA41C;
}

/* Color variations for each tag */
#nuttyflavoursCant .feature-tag:nth-child(1) {
  color: #E65100;
}
#nuttyflavoursCant .feature-tag:nth-child(2) {
  color: #2E7D32;
}
#nuttyflavoursCant .feature-tag:nth-child(3) {
  color: #1565C0;
}
#nuttyflavoursCant .feature-tag:nth-child(4) {
  color: #6A1B9A;
}

/* Floating nut elements */
.nut-float {
  position: absolute;
  font-size: 1.8rem;
  opacity: 0.3;
  z-index: 0;
  animation: floatAround 15s linear infinite;
}

.nut-float:nth-child(1) { 
  top: 20%; 
  left: 10%; 
  animation-delay: 0s;
}
.nut-float:nth-child(2) { 
  top: 60%; 
  right: 15%; 
  animation-delay: 2s;
}
.nut-float:nth-child(3) { 
  bottom: 30%; 
  left: 20%; 
  animation-delay: 4s;
}
.nut-float:nth-child(4) { 
  top: 40%; 
  right: 25%; 
  animation-delay: 6s;
}

@keyframes floatAround {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg); 
  }
  25% { 
    transform: translate(20px, -20px) rotate(90deg); 
  }
  50% { 
    transform: translate(0, -40px) rotate(180deg); 
  }
  75% { 
    transform: translate(-20px, -20px) rotate(270deg); 
  }
}

/* Responsive */
@media (max-width: 768px) {
  #nuttyflavoursCant {
    padding: 50px 10px;
    margin-bottom: 30px;
    border-radius: 15px;
  }
  
  #nuttyflavoursCant h1 {
    font-size: 2.5rem;
  }
  
  #nuttyflavoursCant h1 span::after {
    font-size: 2.2rem;
  }
  
  #nuttyflavoursCant p {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  #nuttyflavoursCant .features {
    gap: 12px;
  }
  
  #nuttyflavoursCant .feature-tag {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .nut-float {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  #nuttyflavoursCant h1 {
    font-size: 2rem;
  }
  
  #nuttyflavoursCant h1 span::after {
    font-size: 1.8rem;
  }
  
  #nuttyflavoursCant p {
    font-size: 1rem;
  }
  
  #nuttyflavoursCant .features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .nut-float {
    font-size: 1.2rem;
  }
  /* #nuttyflavoursCant{
  display: none;
} */
}

/* Add these floating nut elements in your HTML */
#nuttyflavoursCant .nut-float {
  position: absolute;
  pointer-events: none;
}











/* About Us Section */
.about-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFAF5 30%, #FFF3E0 70%, #FFECB3 100%);
  position: relative;
  overflow: hidden;
  animation: fadeInSection 1s ease-out;
}

@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animated background elements */
.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 164, 28, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
  animation: floatBackground 20s linear infinite;
  z-index: 0;
}

@keyframes floatBackground {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}

/* Floating nuts animation */
.floating-nuts {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.floating-nut {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.2;
  animation: floatAround 20s linear infinite;
}

.floating-nut:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-nut:nth-child(2) { top: 25%; right: 15%; animation-delay: 2s; }
.floating-nut:nth-child(3) { top: 65%; left: 20%; animation-delay: 4s; }
.floating-nut:nth-child(4) { top: 75%; right: 25%; animation-delay: 6s; }
.floating-nut:nth-child(5) { top: 40%; left: 5%; animation-delay: 8s; }
.floating-nut:nth-child(6) { top: 50%; right: 5%; animation-delay: 10s; }

@keyframes floatAround {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg) scale(1.1);
    opacity: 0.3;
  }
  50% {
    transform: translate(0, -40px) rotate(180deg) scale(1);
    opacity: 0.2;
  }
  75% {
    transform: translate(-20px, -20px) rotate(270deg) scale(0.9);
    opacity: 0.1;
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
    opacity: 0.2;
  }
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  animation: slideUp 1s ease-out 0.3s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Shop Logo */
.shop-logo {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 
    0 15px 35px rgba(0,0,0,0.1),
    0 0 0 8px rgba(255, 164, 28, 0.1),
    0 0 0 16px rgba(255, 164, 28, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 
      0 15px 35px rgba(0,0,0,0.1),
      0 0 0 8px rgba(255, 164, 28, 0.1),
      0 0 0 16px rgba(255, 164, 28, 0.05);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
      0 25px 50px rgba(255, 164, 28, 0.2),
      0 0 0 12px rgba(255, 164, 28, 0.15),
      0 0 0 24px rgba(255, 164, 28, 0.08);
  }
}

.shop-logo:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 30px 60px rgba(255, 164, 28, 0.3),
    0 0 0 12px rgba(255, 164, 28, 0.2),
    0 0 0 24px rgba(255, 164, 28, 0.1);
}

/* Main Heading */
.about-us h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: #2D3436;
  position: relative;
  padding-bottom: 20px;
  animation: fadeInDown 1s ease-out 0.5s both;
}

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

.about-us h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, #FFA41C, #FF6B6B, #4ECDC4, #FFA41C);
  border-radius: 2px;
  animation: expandLine 3s ease-in-out infinite;
}

@keyframes expandLine {
  0%, 100% { 
    width: 150px;
    background-position: 0% 50%;
  }
  50% { 
    width: 200px;
    background-position: 100% 50%;
  }
}

/* Paragraphs */
.about-us p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 25px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  border: 1px solid rgba(255, 224, 178, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.7s both;
  transition: all 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-us p:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-color: rgba(255, 164, 28, 0.3);
}

.about-us p strong {
  color: #FFA41C;
  font-weight: 700;
  position: relative;
}

.about-us p strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FFA41C, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-us p:hover strong::after {
  transform: scaleX(1);
}

/* Highlights Section */
.highlights {
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 248, 240, 0.95), rgba(255, 255, 255, 0.95));
  border-radius: 20px;
  border: 2px solid rgba(255, 224, 178, 0.8);
  box-shadow: 0 15px 40px rgba(0,0,0, 0.08);
  position: relative;
  overflow: hidden;
  animation: slideInRight 1s ease-out 0.9s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 164, 28, 0.05), transparent);
  transform: translateX(-100%);
  animation: shineEffect 5s ease-in-out infinite;
}

@keyframes shineEffect {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.highlights h2 {
  font-size: 2.2rem;
  color: #2D3436;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.highlights h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #4ECDC4, #FFA41C);
  border-radius: 2px;
  animation: pulseWidth 2s ease-in-out infinite alternate;
}

@keyframes pulseWidth {
  0% { width: 100px; }
  100% { width: 150px; }
}

/* Features List */
.highlights ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.highlights li {
  font-size: 1.1rem;
  padding: 20px 25px;
  background: white;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInScale 0.8s ease-out calc(var(--i, 0) * 0.1s) both;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.highlights li:nth-child(1) { --i: 1; border-left: 4px solid #FFA41C; }
.highlights li:nth-child(2) { --i: 2; border-left: 4px solid #4ECDC4; }
.highlights li:nth-child(3) { --i: 3; border-left: 4px solid #FF6B6B; }
.highlights li:nth-child(4) { --i: 4; border-left: 4px solid #96CEB4; }
.highlights li:nth-child(5) { --i: 5; border-left: 4px solid #FFD166; }

.highlights li::before {
  content: '✓';
  font-size: 1.3rem;
  font-weight: bold;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlights li:nth-child(1)::before { background: #FFF3E0; color: #FFA41C; }
.highlights li:nth-child(2)::before { background: #E0F7FA; color: #4ECDC4; }
.highlights li:nth-child(3)::before { background: #FFEBEE; color: #FF6B6B; }
.highlights li:nth-child(4)::before { background: #E8F5E9; color: #96CEB4; }
.highlights li:nth-child(5)::before { background: #FFF8E1; color: #FFD166; }

.highlights li:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: rgba(255, 164, 28, 0.3);
}

.highlights li:hover::before {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* CTA Button */
.about-cta {
  text-align: center;
  margin-top: 50px;
  animation: fadeIn 1s ease-out 1.1s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #FFA41C, #FF8F00, #FF6B6B);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 12px 30px rgba(255, 164, 28, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 164, 28, 0.4);
  letter-spacing: 2px;
}

.cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

.cta-button i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px) rotate(360deg);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* Tablet */
@media (max-width: 992px) {
  .about-us {
    padding: 80px 0;
  }
  
  .about-us h1 {
    font-size: 2.8rem;
  }
  
  .shop-logo {
    width: 150px;
    height: 150px;
  }
  
  .about-us p {
    font-size: 1.1rem;
    padding: 20px;
  }
  
  .highlights {
    padding: 30px;
  }
  
  .highlights h2 {
    font-size: 1.9rem;
  }
  
  .highlights li {
    font-size: 1rem;
    padding: 18px 20px;
  }
  
  .cta-button {
    padding: 16px 35px;
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-us {
    padding: 60px 0;
  }
  
  .about-us h1 {
    font-size: 2.2rem;
  }
  
  .shop-logo {
    width: 130px;
    height: 130px;
    margin-bottom: 30px;
  }
  
  .about-us p {
    font-size: 1rem;
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .highlights {
    padding: 25px;
    margin-top: 35px;
  }
  
  .highlights h2 {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
  
  .highlights ul {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .highlights li {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
  
  .cta-button {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  /* Disable heavy animations on mobile for performance */
  .floating-nuts,
  .about-us::before,
  .highlights::before,
  .shop-logo,
  .cta-button:hover i {
    animation: none;
  }
  
  .shop-logo:hover {
    transform: scale(1.05);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-us {
    padding: 50px 0;
  }
  
  .about-us h1 {
    font-size: 1.9rem;
    margin-bottom: 25px;
  }
  
  .shop-logo {
    width: 110px;
    height: 110px;
    margin-bottom: 25px;
  }
  
  .about-us p {
    font-size: 0.95rem;
    padding: 15px;
    line-height: 1.6;
  }
  
  .highlights {
    padding: 20px;
    margin-top: 30px;
  }
  
  .highlights h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .highlights li {
    font-size: 0.9rem;
    padding: 14px 16px;
    gap: 12px;
  }
  
  .highlights li::before {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 14px 25px;
    font-size: 0.95rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .about-us h1 {
    font-size: 1.7rem;
  }
  
  .shop-logo {
    width: 100px;
    height: 100px;
  }
  
  .about-us p {
    font-size: 0.9rem;
    padding: 12px;
  }
  
  .highlights {
    padding: 15px;
  }
  
  .highlights h2 {
    font-size: 1.3rem;
  }
  
  .highlights li {
    font-size: 0.85rem;
    padding: 12px 14px;
    gap: 10px;
  }
  
  .highlights li::before {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}