body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #c9aeec; /* Pastel purple */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

h1 {
    color: #4a266a;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.container h1{
  margin-top: 2rem;
}

.container {
    background-color: #e6d9f7;
    width: 60%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.carousel {
    position: relative;
    margin: 2rem auto 2rem auto;
    max-width: 75%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.75rem;
    text-align: center;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
}

.carousel-control {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-control:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.content {
    line-height: 1.6;
    color: #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

p {
    margin-bottom: 1.5rem;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #4a266a;
}


/* Add this to your existing CSS file */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 170px;
}

/* Large phones */
@media (max-width: 844px) {
    h1 {
      font-size: 2.5rem;
    }
    .container {
      width: 85%;
      padding: 1.5rem;
    }
    .carousel-control {
        width: 25px;
        height: 25px;
      }
    .social-icon {
      width: 100px;
    }
  }
  
  /* Medium phones */
  @media (max-width: 667px) {
    h1 {
      font-size: 2.25rem;
    }
    .container {
      width: 90%;
      padding: 1.25rem;
    }

    .social-icon {
      width: 85px;
    }
  }
  
  /* Small phones */
  @media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
    .container {
      width: 95%;
      padding: 1rem;
    }
    .carousel-control {
        width: 15px;
        height: 15px;
      }
  }