:root {
  --lavender-start: #f3e5f5;
  --lavender-end:   #c39bd3;
  --pink-start:     #f8bbd0;
  --pink-end:       #f1948a;
  --text-dark:      #333;
  --bg-light:       #ffffff;
  --bg-alt:         #fdfbfe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  background: var(--bg-alt);
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a{
  text-decoration: none;
  transition: color 0.3s;
}

.site-header {
  background: var(--bg-light);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--lavender-end);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.site-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}
.site-nav a:hover {
  color: var(--pink-end);
}

/* Hero */
.hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--lavender-start), var(--pink-start));
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.3;
}
.hero-content {
  position: relative;
  text-align: center;
  width: 100%;
  color: #fff;
  animation: fadeInUp 0.8s ease both;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.btn {
  display: inline-block;
  background: linear-gradient(45deg, var(--pink-start), var(--lavender-end));
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.3s;
}
.btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Sections */
.about-section,
.why-us-section,
.categories-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.about-section h2,
.why-us-section h2,
.categories-section h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--lavender-end);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.about-section p,
.why-us-section p {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 1rem;
  color: var(--text-dark);
  animation: fadeInUp 0.6s ease 0.2s both;
}

/* Why Choose Us */
.why-us-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.why-us-list li {
  background: linear-gradient(45deg, var(--lavender-start), var(--pink-start));
  color: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 500;
  animation: fadeInUp 0.6s ease both;
}
.why-us-list li:nth-child(odd)  { animation-delay: 0.3s; }
.why-us-list li:nth-child(even) { animation-delay: 0.5s; }

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.category-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
  animation: fadeInUp 0.6s ease both;
}
.category-card:hover {
  transform: translateY(-5px);
}
.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.category-content {
  padding: 20px;
}
.category-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--lavender-end);
}
.category-content p {
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Footer */
.site-footer {
  background: var(--bg-light);
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}
.footer-links {
  margin-bottom: 16px;
}
.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--pink-end);
}
.footer-copy {
  font-size: 0.9rem;
  color: #777;
}

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

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
  }
  .btn {
    width: fit-content;
  }
}

/* Responsive Enhancements */

/* Medium screens (≤ 992px) */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .why-us-list {
    gap: 12px;
  }
  .why-us-list li {
    padding: 10px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .site-nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    background: var(--bg-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
  }
  .site-nav ul.show {
    display: flex;
  }
  .site-nav a {
    padding: 12px 20px;
  }

  .hero-section {
    height: auto;
    padding: 60px 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .why-us-list {
    flex-direction: column;
    align-items: center;
  }
  .why-us-list li {
    width: 100%;
    text-align: center;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }
  .category-card img {
    height: auto;
  }

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

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 10px 20px;
  }
  .about-section h2,
  .why-us-section h2,
  .categories-section h2 {
    font-size: 2rem;
  }
}

.portfolio-section {
  padding: 80px 20px;
  background: var(--bg-alt);
}
.portfolio-title {
  text-align: center;
  font-size: 2.4rem;
  color: var(--lavender-end);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s both;
}
.slider-wrapper {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 10px;
}
.slide img {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}
.slide-caption {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-dark);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  color: var(--lavender-end);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}
.slider-btn:hover {
  background: rgba(255,255,255,1);
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

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

@media (min-width: 768px) {
  .slide { min-width: 50%; }
}

.testimonials-section {
  background: var(--bg-alt);
  padding: 80px 20px;
}
.testimonials-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  color: var(--lavender-end);
  margin-bottom: 40px;
  animation: fadeInUp 0.6s both;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: fadeInUp 0.6s both;
}
.testimonial:nth-child(1) { animation-delay: 0.2s; }
.testimonial:nth-child(2) { animation-delay: 0.4s; }
.testimonial:nth-child(3) { animation-delay: 0.6s; }
.testimonial blockquote {
  font-style: italic;
  color: #555;
  margin-bottom: 16px;
}
.testimonial-author {
  text-align: right;
  font-weight: 500;
  color: var(--pink-end);
}

.contact-us-section {
  background: var(--bg-light);
  padding: 80px 20px;
}
.contact-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1 1 320px;
  animation: fadeInUp 0.6s both;
}
.contact-info .section-title {
  font-size: 2.4rem;
  color: var(--lavender-end);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.contact-details {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}
.contact-details li {
  margin-bottom: 12px;
  font-size: 1rem;
}
.contact-details a {
  color: var(--pink-end);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-details a:hover {
  color: var(--lavender-end);
}
.contact-note {
  font-size: 0.9rem;
  color: #666;
}
.contact-image {
  flex: 1 1 320px;
  text-align: center;
  animation: fadeInUp 0.6s 0.3s both;
}
.contact-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: inline-block;
}

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

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .contact-image, .contact-info {
    width: 100%;
  }
  .contact-info .section-title {
    font-size: 2rem;
  }
  .contact-details li {
    font-size: 0.95rem;
  }
  .contact-note {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .testimonial {
    padding: 20px;
  }
  .testimonial blockquote {
    font-size: 0.95rem;
  }
  .testimonial-author {
    font-size: 0.9rem;
  }

  .contact-wrapper {
    gap: 24px;
  }
  .contact-info,
  .contact-image {
    flex: 1 1 100%;
  }
  .contact-info .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section {
    padding: 60px 10px;
  }
  .section-title {
    font-size: 2rem;
  }

  .contact-us-section {
    padding: 60px 10px;
  }
  .contact-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .contact-info, .contact-image {
    width: 100%;
  }
  .contact-details li {
    font-size: 0.95rem;
  }
  .contact-note {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section,
  .contact-us-section {
    padding: 40px 10px;
  }
  .testimonials-grid {
    gap: 16px;
  }
  .testimonial {
    padding: 16px;
  }
  .testimonial blockquote {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  .testimonial-author {
    font-size: 0.85rem;
  }
  .contact-details li {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  .contact-note {
    font-size: 0.8rem;
  }
}

.faq-section {
  background: var(--bg-alt);
  padding: 80px 20px;
}
.faq-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  color: var(--lavender-end);
  margin-bottom: 40px;
  animation: fadeInUp 0.6s both;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  position: relative;
  cursor: pointer;
  color: var(--text-dark);
  transition: color 0.3s;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.faq-item.active .faq-question {
  color: var(--lavender-end);
}
.faq-item.active .faq-question::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s 0.2s;
  line-height: 1.6;
  color: #555;
}
.faq-item.active .faq-answer {
  max-height: 200px; 
}
.faq-item.active .faq-answer p {
  padding: 12px 0;
  opacity: 1;
}

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

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 10px;
  }
  .faq-section .section-title {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}

.cb-hero {
  position: relative;
  overflow: hidden;
  height: 60vh;
}
.cb-slide-track {
  display: flex;
  transition: transform 0.6s ease;
}
.cb-slide {
  min-width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cb-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.cb-slide-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  animation: fadeInUp 0.8s both;
}
.cb-slide-caption h1 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}
.cb-slide-caption p {
  font-size: 1.1rem;
}

.cb-prev,
.cb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  color: var(--lavender-end);
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  z-index: 2;
}
.cb-prev:hover,
.cb-next:hover {
  background: rgba(255,255,255,1);
}
.cb-prev { left: 16px; }
.cb-next { right: 16px; }

.section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--lavender-end);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s both;
}
.section p {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 1rem;
  animation: fadeInUp 0.6s 0.2s both;
}

.cb-overview p {
  text-align: center;
}

.cb-syllabus-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: disc inside;
  font-size: 1rem;
  animation: fadeInUp 0.6s 0.2s both;
}
.cb-syllabus-list li {
  margin-bottom: 12px;
}

.cb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  animation: fadeInUp 0.6s 0.3s both;
}
.cb-plan {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.cb-plan h3 {
  font-size: 1.4rem;
  color: var(--lavender-end);
  margin-bottom: 12px;
}
.cb-plan p {
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.cb-plan ul {
  list-style: none;
  margin-bottom: 20px;
}
.cb-plan ul li {
  margin-bottom: 8px;
}
.cb-plan .btn {
  width: auto;
}

.cb-testimonials {
  background: var(--bg-light);
}
.cb-testimonial-track {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.cb-testimonial {
  display: none;
  position: absolute;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  animation: fadeInUp 0.6s both;
}
.cb-testimonial.active {
  display: block;
}
.cb-testimonial blockquote {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
}
.cb-testimonial footer {
  font-weight: 500;
  color: var(--pink-end);
}

.cb-faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
}
.cb-faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  padding: 16px 0;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}
.cb-faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  transition: transform 0.3s;
}
.cb-faq-item.active .cb-faq-question {
  color: var(--lavender-end);
}
.cb-faq-item.active .cb-faq-question::after {
  content: "–";
  transform: translateY(-50%) rotate(180deg);
}
.cb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cb-faq-item.active .cb-faq-answer {
  max-height: 200px;
}
.cb-faq-answer p {
  padding: 0 0 16px;
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.cb-faq-item.active .cb-faq-answer p {
  opacity: 1;
}

.cb-contact-cta {
  text-align: center;
  animation: fadeInUp 0.6s 0.4s both;
}
.cb-contact-cta .btn {
  padding: 14px 32px;
  font-size: 1rem;
}

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

@media (max-width: 992px) {
  .cb-slide-caption h1 { font-size: 2rem; }
  .cb-slide-caption p  { font-size: 1rem; }
}
@media (max-width: 768px) {
  .cb-hero    { height: auto; padding: 40px 0; }
  .cb-slide   { height: 40vh; }
  .cb-slide-track { transform: translateX(0) !important; }
  .cb-overview p,
  .cb-syllabus-list li,
  .cb-pricing-grid,
  .cb-testimonial-track,
  .cb-faq-item,
  .cb-contact-cta { padding: 0 10px; }
}

.philosophy-section {
  background: linear-gradient(135deg, var(--lavender-start), var(--pink-start));
  padding: 80px 20px;
  border-radius: 16px;
  margin: 60px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: "🌸";
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 8rem;
  opacity: 0.1;
  transform: rotate(15deg);
}
.philosophy-section .section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s both;
}
.philosophy-quote {
  font-style: italic;
  font-size: 1.2rem;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 700px;
  position: relative;
  padding-left: 40px;
  line-height: 1.4;
  animation: fadeInUp 0.6s 0.2s both;
}
.philosophy-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
}
.philosophy-list {
  max-width: 800px;
  margin: 0 auto 40px;
  list-style: none;
  padding-left: 0;
  animation: fadeInUp 0.6s 0.4s both;
}
.philosophy-list li {
  margin-bottom: 16px;
  font-size: 1rem;
  padding-left: 32px;
  position: relative;
}
.philosophy-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #fff;
  font-size: 1.2rem;
}
.philosophy-testimonial {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s 0.6s both;
}
.philosophy-testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}
.philosophy-testimonial .author {
  display: block;
  font-weight: 500;
}

@media (max-width: 768px) {
  .philosophy-section {
    padding: 60px 10px;
    border-radius: 12px;
  }
  .philosophy-section::before {
    font-size: 6rem;
  }
  .philosophy-section .section-title {
    font-size: 2rem;
  }
  .philosophy-quote {
    font-size: 1rem;
    padding-left: 24px;
  }
  .philosophy-quote::before {
    font-size: 2.5rem;
    top: -6px;
  }
  .philosophy-list li {
    font-size: 0.95rem;
    padding-left: 28px;
  }
  .philosophy-testimonial p {
    font-size: 0.95rem;
  }
}

.title_background {
  background: linear-gradient(135deg, var(--lavender-start), var(--pink-start));
  padding: 60px 0;
  text-align: center;
}
.title_background .title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease both;
}

.text_background {
  background: var(--bg-light);
  padding: 60px 0;
}
.text_background .text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  animation: fadeIn 0.8s ease both;
}

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

@media (max-width: 768px) {
  .title_background .title {
    font-size: 2rem;
    padding: 0 10px;
  }
  .text_background {
    padding: 40px 10px;
  }
  .text_background .text {
    font-size: 0.95rem;
  }
}

.cb-syllabus {
  background: var(--bg-light);
  padding: 100px 20px;
}
.cb-syllabus .section-title {
  text-align: center;
  font-size: 2.6rem;
  color: var(--lavender-end);
  margin-bottom: 48px;
  animation: fadeInUp 0.6s both;
}
.cb-syllabus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.cb-syllabus-item {
  background: linear-gradient(135deg, #fff, #f9f8fc);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: fadeInUp 0.6s both;
}
.cb-syllabus-item:nth-child(1) { animation-delay: 0.2s; }
.cb-syllabus-item:nth-child(2) { animation-delay: 0.4s; }
.cb-syllabus-item:nth-child(3) { animation-delay: 0.6s; }
.cb-syllabus-item:nth-child(4) { animation-delay: 0.8s; }
.cb-syllabus-item:nth-child(5) { animation-delay: 1s; }

.cb-syllabus-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.cb-syllabus-item h3 {
  font-size: 1.3rem;
  color: var(--pink-end);
  margin-bottom: 12px;
}

.cb-syllabus-item p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .cb-syllabus {
    padding: 60px 10px;
  }
  .cb-syllabus .section-title {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .cb-syllabus-item {
    padding: 24px 16px;
  }
  .item-icon {
    width: 36px;
    height: 36px;
  }
  .cb-syllabus-item h3 {
    font-size: 1.2rem;
  }
  .cb-syllabus-item p {
    font-size: 0.95rem;
  }
}

.fg-about-section {
  background: #fff;
  padding: 100px 20px;
}
.fg-container {
  max-width: 1000px;
  margin: 0 auto;
}
.fg-title {
  text-align: center;
  font-size: 2.8rem;
  color: #9b59b6;
  margin-bottom: 32px;
  animation: fg-fadeInUp 0.6s both;
}
.fg-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 auto 24px;
  max-width: 800px;
  animation: fg-fadeInUp 0.6s 0.2s both;
}
.fg-quote {
  font-style: italic;
  color: #555;
  max-width: 700px;
  margin: 0 auto 32px;
  padding-left: 40px;
  position: relative;
  animation: fg-fadeInUp 0.6s 0.4s both;
}
.fg-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: rgba(0,0,0,0.1);
}
.fg-feature-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto 60px;
  animation: fg-fadeInUp 0.6s 0.6s both;
}
.fg-feature-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #333;
}
.fg-feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e74c3c;
}

.fg-timeline-wrapper {
  background: #f9f8fc;
  padding: 60px 0;
  border-radius: 12px;
}
.fg-timeline-title {
  text-align: center;
  font-size: 2.4rem;
  color: #9b59b6;
  margin-bottom: 40px;
  animation: fg-fadeInUp 0.6s both;
}
.fg-timeline-list {
  display: flex;
  overflow-x: auto;
  gap: 60px;
  padding: 0 20px;
  scroll-snap-type: x mandatory;
  list-style: none;
  position: relative;
}
.fg-timeline-list::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: #e74c3c;
  z-index: 1;
}
.fg-timeline-item {
  flex: 0 0 200px;
  scroll-snap-align: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fg-fadeInUp 0.6s forwards;
  z-index: 2;
}
.fg-timeline-item:nth-child(1) { animation-delay: 0.3s; }
.fg-timeline-item:nth-child(2) { animation-delay: 0.5s; }
.fg-timeline-item:nth-child(3) { animation-delay: 0.7s; }
.fg-timeline-item:nth-child(4) { animation-delay: 0.9s; }
.fg-timeline-item:nth-child(5) { animation-delay: 1.1s; }
.fg-timeline-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.fg-timeline-icon img {
  width: 40px;
  height: 40px;
}
.fg-timeline-item:hover .fg-timeline-icon {
  transform: scale(1.1);
}
.fg-timeline-content h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}
.fg-timeline-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

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

@media (max-width: 992px) {
  .fg-about-section { padding: 80px 10px; }
  .fg-timeline-list { gap: 40px; }
  .fg-timeline-item { flex: 0 0 160px; }
  .fg-timeline-icon { width: 60px; height: 60px; }
}
@media (max-width: 768px) {
  .fg-paragraph,
  .fg-quote,
  .fg-feature-list li {
    font-size: 0.95rem;
  }
  .fg-timeline-list {
    padding: 0 10px;
  }
}

.fg-help-section {
  background: linear-gradient(135deg, #fbe4f9, #ead1dc);
  padding: 80px 20px;
  border-radius: 12px;
  text-align: center;
  margin: 60px 0;
}
.fg-help-title {
  font-size: 2.4rem;
  color: #9b59b6;
  margin-bottom: 16px;
  animation: fg-fadeInUp 0.6s both;
}
.fg-help-text {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 24px;
  color: #555;
  animation: fg-fadeInUp 0.6s 0.2s both;
}
.fg-help-contact {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fg-fadeInUp 0.6s 0.4s both;
}
.fg-help-btn {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #f8bbd0, #f1948a);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s, box-shadow 0.3s;
}
.fg-help-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
  .fg-help-title {
    font-size: 2rem;
  }
  .fg-help-text {
    font-size: 0.95rem;
  }
  .fg-help-contact {
    flex-direction: column;
    gap: 12px;
  }
  .fg-help-btn {
    width: 100%;
    max-width: 260px;
  }
}