

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.cta-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 24px auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 24px 48px 48px 48px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    
}

.cta-title {
    color: black;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    line-height: 1.2;
}

@keyframes bounceInRight {
    0% {
      opacity: 0;
      transform: translateX(100%) scale(0.3);
    }
    20% {
      opacity: 1;
      transform: translateX(-20px) scale(1.1);
    }
    40% {
      transform: translateX(10px) scale(0.9);
    }
    60% {
      transform: translateX(-5px) scale(1.03);
    }
    80% {
      transform: translateX(3px) scale(0.97);
    }
    100% {
      transform: translateX(0) scale(1);
      opacity: 1;
    }
}
  

.cta-description {
    width: 358px;
    font-size: 16px;
    color: #3a3a3a;
    letter-spacing: -0.02em;
    line-height: 133%;
    font-weight: 500;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

#cta-button{
    padding: 12px 24px;
    background-color: #1aabcc;
    color: #ffffff;
}
#cta-button:hover, #cta-button:focus {
    color: #1aabcc;
  }
#cta-button:hover:before, #cta-button:hover:after, #cta-button:focus:before, #cta-button:focus:after {
    background-color: #ffffff;
  }
.cta-image {
    width: 100%;
    max-width: 483px;
    display: block;
}

@media (max-width: 768px) {
    .cta-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 48px 16px 48px;;
    }

    .cta-content {
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-image {
        margin-top: 20px;
        flex: 1;    }
}

  
.bounceInRight {
  opacity: 0;
  transform: translateX(100%);
  transition: 
    opacity 2.5s ease-out, 
    transform 2s cubic-bezier(0.25, 0.25, 0.5, 1.25);
}

.bounceInRight.visible {
  opacity: 1;
  transform: translateX(0);
}