  html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
  }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 50;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.nav {
  display: none;
  gap: 2rem;
}

.nav-link {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1f2937;
}

.contact-btn {
  display: none;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-btn:hover {
  background-color: #f9fafb;
}

strong{
  font-weight: bold;
  color: #2e3690;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav {
    display: flex;
  }

  .contact-btn {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  padding: 2rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: none;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 10;
}

.hero-banner {
  text-align: center;
  margin-bottom: 0;
}

.banner-image_pc {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.banner-image_sp{
  display: none;
}
@media (max-width: 767px){
  .banner-image_pc {
    display: none;
}

.banner-image_sp{
  display: block;
    width: 100%;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
}

@media (min-width: 768px) {
  .hero {
    padding: 4rem 0;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .banner-image {
    border-radius: 0.5rem;
  }
}

@media (min-width: 768px) {
  .hero-bg {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 1.25rem 0;
  }

  .hero-content {
    padding: 0 2rem;
  }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.orb-1 {
  top: 25%;
  left: 25%;
  width: 8rem;
  height: 8rem;
  background-color: rgba(251, 207, 232, 0.6);
  animation: float-slow 8s ease-in-out infinite;
}
.orb-2 {
  top: 33%;
  right: 33%;
  width: 7rem;
  height: 7rem;
  background-color: rgba(219, 234, 254, 0.7);
  animation: float-medium 6s ease-in-out infinite;
}
.orb-3 {
  bottom: 25%;
  left: 33%;
  width: 9rem;
  height: 9rem;
  background-color: rgba(233, 213, 255, 0.5);
  animation: float-fast 4s ease-in-out infinite;
}
.orb-4 {
  top: 50%;
  right: 25%;
  width: 6rem;
  height: 6rem;
  background-color: rgba(252, 231, 243, 0.65);
  animation: float-slow 8s ease-in-out infinite;
}
.orb-5 {
  bottom: 33%;
  right: 50%;
  width: 7.5rem;
  height: 7.5rem;
  background-color: rgba(239, 246, 255, 0.6);
  animation: float-medium 6s ease-in-out infinite;
}
.orb-6 {
  top: 16%;
  left: 50%;
  width: 6.5rem;
  height: 6.5rem;
  background-color: rgba(243, 232, 255, 0.55);
  animation: float-fast 4s ease-in-out infinite;
}
.orb-7 {
  top: 75%;
  right: 16%;
  width: 5rem;
  height: 5rem;
  background-color: rgba(251, 207, 232, 0.7);
  animation: float-slow 8s ease-in-out infinite;
}
.orb-8 {
  top: 20%;
  right: 50%;
  width: 8.5rem;
  height: 8.5rem;
  background-color: rgba(219, 234, 254, 0.5);
  animation: float-medium 6s ease-in-out infinite;
}
.orb-9 {
  bottom: 16%;
  left: 16%;
  width: 7rem;
  height: 7rem;
  background-color: rgba(233, 213, 255, 0.6);
  animation: float-fast 4s ease-in-out infinite;
}
.orb-10 {
  top: 66%;
  left: 66%;
  width: 5.5rem;
  height: 5.5rem;
  background-color: rgba(252, 231, 243, 0.65);
  animation: float-slow 8s ease-in-out infinite;
}
.orb-11 {
  top: 12%;
  left: 75%;
  width: 6.5rem;
  height: 6.5rem;
  background-color: rgba(239, 246, 255, 0.55);
  animation: float-medium 6s ease-in-out infinite;
}
.orb-12 {
  bottom: 40%;
  right: 33%;
  width: 7.5rem;
  height: 7.5rem;
  background-color: rgba(243, 232, 255, 0.6);
  animation: float-fast 4s ease-in-out infinite;
}
.orb-13 {
  top: 60%;
  left: 12%;
  width: 6rem;
  height: 6rem;
  background-color: rgba(251, 207, 232, 0.5);
  animation: float-slow 8s ease-in-out infinite;
}
.orb-14 {
  bottom: 12%;
  right: 66%;
  width: 8rem;
  height: 8rem;
  background-color: rgba(219, 234, 254, 0.55);
  animation: float-medium 6s ease-in-out infinite;
}
.orb-15 {
  top: 80%;
  right: 75%;
  width: 7rem;
  height: 7rem;
  background-color: rgba(233, 213, 255, 0.65);
  animation: float-fast 4s ease-in-out infinite;
}

/* Rising bubbles */
.bubble {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  opacity: 0.7;
}

.bubble-1 {
  left: 5%;
  width: 3rem;
  height: 3rem;
  background-color: rgba(251, 207, 232, 0.7);
  animation: bubble-rise-1 12s ease-out infinite;
}
.bubble-2 {
  left: 10%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(219, 234, 254, 0.65);
  animation: bubble-rise-2 15s ease-out infinite 4s;
}
.bubble-3 {
  left: 15%;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(233, 213, 255, 0.6);
  animation: bubble-rise-3 18s ease-out infinite 8s;
}
.bubble-4 {
  left: 20%;
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(252, 231, 243, 0.75);
  animation: bubble-rise-1 12s ease-out infinite;
}
.bubble-5 {
  left: 25%;
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(239, 246, 255, 0.65);
  animation: bubble-rise-2 15s ease-out infinite 4s;
}
.bubble-6 {
  left: 30%;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(243, 232, 255, 0.7);
  animation: bubble-rise-3 18s ease-out infinite 8s;
}
.bubble-7 {
  left: 35%;
  width: 3rem;
  height: 3rem;
  background-color: rgba(251, 207, 232, 0.6);
  animation: bubble-rise-1 12s ease-out infinite;
}
.bubble-8 {
  left: 40%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(219, 234, 254, 0.65);
  animation: bubble-rise-2 15s ease-out infinite 4s;
}
.bubble-9 {
  left: 45%;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(233, 213, 255, 0.55);
  animation: bubble-rise-3 18s ease-out infinite 8s;
}
.bubble-10 {
  left: 50%;
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(252, 231, 243, 0.7);
  animation: bubble-rise-1 12s ease-out infinite;
}
.bubble-11 {
  left: 55%;
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(239, 246, 255, 0.6);
  animation: bubble-rise-2 15s ease-out infinite 4s;
}
.bubble-12 {
  left: 60%;
  width: 3rem;
  height: 3rem;
  background-color: rgba(243, 232, 255, 0.65);
  animation: bubble-rise-3 18s ease-out infinite 8s;
}
.bubble-13 {
  left: 65%;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(251, 207, 232, 0.55);
  animation: bubble-rise-1 12s ease-out infinite;
}
.bubble-14 {
  left: 70%;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(219, 234, 254, 0.75);
  animation: bubble-rise-2 15s ease-out infinite 4s;
}
.bubble-15 {
  left: 75%;
  width: 4rem;
  height: 4rem;
  background-color: rgba(233, 213, 255, 0.5);
  animation: bubble-rise-3 18s ease-out infinite 8s;
}
.bubble-16 {
  left: 80%;
  width: 2.75rem;
  height: 2.75rem;
  background-color: rgba(252, 231, 243, 0.7);
  animation: bubble-rise-1 12s ease-out infinite;
}
.bubble-17 {
  left: 85%;
  width: 3.25rem;
  height: 3.25rem;
  background-color: rgba(239, 246, 255, 0.6);
  animation: bubble-rise-2 15s ease-out infinite 4s;
}
.bubble-18 {
  left: 90%;
  width: 3rem;
  height: 3rem;
  background-color: rgba(243, 232, 255, 0.65);
  animation: bubble-rise-3 18s ease-out infinite 8s;
}
.bubble-19 {
  left: 95%;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(251, 207, 232, 0.55);
  animation: bubble-rise-1 12s ease-out infinite;
}
.bubble-20 {
  right: 5%;
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(219, 234, 254, 0.6);
  animation: bubble-rise-2 15s ease-out infinite 4s;
}

/* Animated waves */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.wave-1 {
  height: 24rem;
  opacity: 0.4;
}

.wave-2 {
  height: 20rem;
  opacity: 0.35;
}

.wave-3 {
  height: 16rem;
  opacity: 0.3;
}

/* Main content */
.main-content {
  max-width: 1160px;
  margin: 0 auto;
  line-height:1.6;
}

/* Event Details */
.event-details {
  padding: 4rem 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.675rem;
  font-weight: 700;
  color: #1f2937;
  /*margin-bottom: 1.5rem;*/
  font-family: "Noto Serif JP", serif;
	margin-bottom: 1.5em;
}
.section-title br{
  display:none;
}
@media (max-width: 767px) {
    .section-title {
      font-size: 1.3rem
	}
    .section-title br{
      display:block;
	}
}
@media (max-width: 480px) {
    .section-title {
      font-size: 1.15rem
	}
}
.section-subtitle{
  text-align: left;
  font-size: 1.475rem;
  font-weight: 700;
}

.content {
  font-size: 16px;
  max-width: none;
  color: #374151;
  line-height: 1.75;
}

.content p {
  margin-bottom: 1.5rem;
}

/*.content .closing {
  text-align: center;
  font-weight: 600;
  font-size: 1.125rem;
}*/

/* Event Overview */
.event-overview {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.overview-item {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.overview-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.overview-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Speaker Profiles */
.speaker-profiles {
  padding: 3rem 0 3rem;
  background-color: #f9fafb;
}

.speakers-grid {
  display: grid;
  /*grid-template-columns: repeat(2,minmax(0,1fr));*/
  gap: 1.5rem;
}

.speaker-photo[src*="speaker1"]{
 width: 37%;
 max-height: 430px;
}
.speaker-photo[src*="speaker2"]{
 width: 57%;
 max-height: 430px;
}
@media (max-width: 767px) {
.speaker-photo[src*="speaker1"]{
 width: 73%;
 max-height: none;
}
.speaker-photo[src*="speaker2"]{
 width: 94%;
 max-height: none;
}

}
.speaker-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /*padding: 2rem;*/
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 17%);
}

.speaker-image {
  text-align: center;
  background: linear-gradient(45deg, rgb(255 235 214), rgb(255 227 225));
}

.space-y-4 p{
  margin-bottom: 16px;
  font-size: 14px;
  word-break: break-word;
      letter-spacing: 0.03em;
}

.speaker-photo {
  width: 57%;
  object-fit: cover;
  padding: 17px;
  max-height: 430px;
}

.speaker-content {
  text-align: center;
}
.speaker-content h4 {
    font-weight: bold;
    margin-bottom: 8px;
     padding: 10px 0 5px;
}
.speaker-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", serif;
}

.speaker-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2e3690;
  margin-bottom: 1.5rem;
}

.speaker-bio p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 1rem;
  text-align: left;
}

@media (max-width: 767px) {
    .speaker-content h4 {
        text-align: left;
 	        padding: 10px 20px 5px;
    }
}
@media (min-width: 768px) {
  .speaker-card {
    flex-direction: column;
    text-align: left;
  }

  .speaker-content {
    text-align: left;
    flex: 1;
    padding: 0 25px 25px;
  }

  .speaker-image {
    flex-shrink: 0;
  }

}

/* Program Schedule */
.program-schedule {
  padding: 3rem 0;
  background-color: #eff6ff;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.schedule-list-title h3{
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 25px;
}

.program-text1{
    margin-top: 15px;
    font-size: 18px;
    color: #545565;
}

.program-text2{
  font-size: 1.275rem;
  font-weight: 500;
}

.schedule-list-title{
  text-align: center;
}

.schedule-item {
  display: block;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.schedule-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2e3690;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.schedule-time::before{
  content: url('/images/ceremony/clock.svg');
  width: 18px;
  padding-top: 2px;
}

.schedule-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.schedule-speaker {
  font-size: 0.875rem;
  color: #2e3690;
  font-weight: 500;
}

.schedule-description {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .schedule-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 20px;
  }

  .schedule-time {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.35rem;
    min-width: fit-content;
    margin-bottom: 0;
  }

  .schedule-content {
    flex: 1;
  }
}

/* Registration Section */
.registration-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.registration-content {
  max-width: 776px;
  margin: 0 auto;
  text-align: center;
}

.registration-steps {
  margin-bottom: 3rem;
}

.steps-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 2rem;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem 1rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  text-align: left;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #2e3690;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.875rem;
  color: #374151;
}

.registration-cta {
  text-align: center;
}

.registration-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 3rem;
  background-color: #e84e38;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-bottom: 1rem;
}
@media (max-width: 767px){
  .registration-btn{
    padding: 1rem 2rem;
  }
  }

.registration-btn:hover {
  background-color: #ff715d;
}

.registration-note {
  font-size: 0.875rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .steps-list {
    flex-direction: row;
    justify-content: center;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    flex: 1;
    max-width: 200px;
  }

  .step-text {
    text-align: center;
  }
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.contact-info p {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-contact-btn {
  padding: 0.75rem 1.5rem;
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.footer-contact-btn:hover {
  background-color: #2563eb;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: #9ca3af;
}

.speaker-rubi{
    font-size: 11px;
    line-height: 3px;
    letter-spacing: 0.1rem;
}

@media (max-width: 767px){
  .hero{
    padding: 0px;
  }
  .content{
    font-size: 14px;
  }
  .event-details{
    padding: 1rem 0;
  }
   .container-narrow{
    padding: 20px;
   }   
   .speakers-grid{
    grid-template-columns: none;
   }
   .schedule-list{
    gap:1rem ;
   }
   .schedule-list-title{
    padding: 0 20px;
   }
   .speaker-profiles{
    padding: 1rem 0 2rem;
   }
   .schedule-description{
     font-size: 13px;
   }
   .speaker-content p{
    text-align: left;
    padding:5px 20px;
   }
   .speaker-name{
    font-size:1.2rem ;
    text-align: left;
    padding: 0px 20px;
    }
   .speaker-title{
    margin-bottom: 0.5rem;
   }
   .program-schedule{
    padding: 3rem 0 2rem;
   }
   .section-subtitle{
    font-size: 1.2rem;
   }
   .space-y-4 p{
    margin-bottom: 10px;
   }
   .schedule-list-title h3{
    font-size: 1.4rem;
   }
   .program-text1{
    font-size: 1rem;
   }
   .program-text2{
    font-size: 1rem;
   }
   .schedule-item{
    margin-bottom: 15px;
   }
   .registration-section{
        padding: 1rem 0;
   }
   .section-header{
    margin-bottom: 1.5rem;

   }
   .steps-title{
    margin-bottom: 1rem;
   }
   .registration-steps{
    margin-bottom: 1rem;
   }
   .schedule-title{
    font-size: 1.0rem;
   }
  /* .content .closing{
    font-size: 0.9rem;
   }*/
   .schedule-time::before{
    padding-top: 5px;
   }
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }

  .footer-section {
    text-align: left;
  }

  .footer-links {
    align-items: flex-start;
  }
}

/* Animations */
@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
  }
  75% {
    transform: translateY(-25px) translateX(8px);
  }
}

@keyframes float-medium {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-15px) translateX(-8px);
  }
  66% {
    transform: translateY(-30px) translateX(12px);
  }
}

@keyframes float-fast {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  20% {
    transform: translateY(-10px) translateX(5px);
  }
  40% {
    transform: translateY(-25px) translateX(-10px);
  }
  60% {
    transform: translateY(-15px) translateX(15px);
  }
  80% {
    transform: translateY(-35px) translateX(-5px);
  }
}

@keyframes bubble-rise-1 {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-25vh) translateX(-10px) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50vh) translateX(15px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-75vh) translateX(-5px) scale(1.05);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100vh) translateX(8px) scale(0.8);
    opacity: 0;
  }
}

@keyframes bubble-rise-2 {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-30vh) translateX(12px) scale(1.2);
    opacity: 0.5;
  }
  60% {
    transform: translateY(-60vh) translateX(-8px) scale(0.85);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) translateX(10px) scale(0.7);
    opacity: 0;
  }
}

@keyframes bubble-rise-3 {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.9;
  }
  20% {
    transform: translateY(-20vh) translateX(-15px) scale(1.15);
    opacity: 0.7;
  }
  40% {
    transform: translateY(-40vh) translateX(20px) scale(0.95);
    opacity: 0.5;
  }
  70% {
    transform: translateY(-70vh) translateX(-12px) scale(1.1);
    opacity: 0.25;
  }
  100% {
    transform: translateY(-100vh) translateX(5px) scale(0.75);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .container-narrow {
    padding: 0 1.5rem;
  }

  .nav {
    display: flex;
  }

  .contact-btn {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .container-narrow {
    padding: 0 1rem;
  }
}

#ai-section{display :none;}

.wpcf7-section > div .contact_form li dl {
    text-align: left;
}
.wpcf7-section > div{
padding-top: 0 !important;
padding-bottom: 0 !important;
}