/* inherits your site’s exact styles */
:root {
  --pink: #fbcfe8;
  --rose: #be185d;
  --light-rose: #f8bbd9;
  --ink: #3d2b2b;
  --shadow: rgba(0,0,0,0.15);
}
body {
  margin:0;
  font-family:'Georgia', serif;
  background: linear-gradient(135deg,#fdf2f8,#fce7f3,#fbcfe8);
  color:#3d2b2b;
}

header {
  padding: 16px 0;
  background: rgba(255,255,255,0.7);
  border-bottom:1px solid #f8bbd9;
  backdrop-filter: blur(10px);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.header-logo {
  font-size: 26px;
  font-weight: bold;
  color: #be185d;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

.header-logo:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-nav a {
  color: #be185d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s, opacity 0.2s;
  padding: 4px 0;
}

.header-nav a:hover {
  color: #831843;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .header-logo {
    font-size: 22px;
  }
  
  .header-nav {
    gap: 20px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 16px 0;
    font-size: 22px;
  }
}

.blog-container {
  max-width: 760px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-container h1 {
  font-size: 40px;
  color: #be185d;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .blog-container {
    margin: 20px auto;
    padding: 0 16px;
  }
  
  .blog-container h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .blog-container p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.blog-container h2 {
  font-size: 26px;
  color: #be185d;
  margin-top: 40px;
}

.blog-container p {
  font-size: 18px;
  line-height: 1.75;
  color: #831843;
  margin-bottom: 22px;
}

.blog-container ul {
  font-size: 18px;
  line-height: 1.75;
  color: #831843;
  margin-bottom: 25px;
  padding-left: 22px;
}

a.cta-button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 14px 26px;
  background: linear-gradient(90deg, #be185d, #f472b6);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: transform .2s, opacity .2s;
}
a.cta-button:hover {
  transform: scale(1.05);
  opacity: .9;
}

/* SHINE EFFECT */
a.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 45%,
    rgba(255,255,255,0) 90%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: shine 2.2s infinite ease-in-out;
}

/* SHINE KEYFRAMES */
@keyframes shine {
  0% { left: -150%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

.centered{
  text-align: center;
}




.image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.image-section img {
  max-width: 90%;
  border-radius: 33px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}





.site-footer {
  background: linear-gradient(90deg, var(--rose), #f472b6);
  color: white;
  text-align: center;
  padding: 20px 10px 16px;
  font-size: 18px;
  font-weight: bold;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}

.footer-brand {
  text-align: center;
}

.footer-brand strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.footer-description {
  max-width: 600px;
  margin: 2px auto 0;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.95;
  line-height: 1.3;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-content: center;
  margin: 4px 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-column h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: white;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.2s, padding-left 0.2s;
  padding-left: 0;
}

.footer-column a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-social {
  text-align: center;
  margin: 2px 0;
}

.footer-social h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: white;
}

.footer-social-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  opacity: 0.9;
  transition: opacity 0.2s;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.footer-social-links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2px;
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
  opacity: 0.95;
}

.footer-bottom a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 2px 0;
  }
  
  .footer-social-links {
    gap: 6px;
  }
  
  .footer-social-links a {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .footer-inner {
    gap: 10px;
  }
  
  .site-footer {
    padding: 16px 10px 12px;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .footer-description {
    font-size: 12px;
  }
  
  .site-footer {
    padding: 14px 10px 10px;
  }
  
  .footer-inner {
    gap: 8px;
  }
}