.carousel {
    max-width: 90%;
    margin: auto;
    position: relative;
}

.carousel-inner {
    display: flex;
}

.carousel-item {
    flex: 0 0 100%;
    display: none;
}

.center {
  margin: auto;
  width: auto;
  text-align: center;
  padding: 10px;
}
.carousel-item.active {
    display: block;
}

.image-block {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2%;
    max-width: 70%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 7%;
}

.circle {
    width: 70%;
    height: 70%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
}

.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #555;
}

.download-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.download-button:hover {
    background-color: #0056b3;
}

.subscription-note {
    font-size: 12px;
    color: #999;
    margin-top: 1px;
    margin-bottom: -11px;
    
}

/* Carousel Button Styling */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(36, 96, 132, 1);
    color: white;
    border: 2px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(36, 96, 132, 1);
    color: white;
    
}

.carousel-control-prev {
    left: -0px;
}

.carousel-control-next {
    right: -0px;
}

.carousel-control-prev::after,
.carousel-control-next::after {
    content: '';
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
}

.carousel-control-prev::after {
    content: '‹'; /* Left arrow symbol */
}

.carousel-control-next::after {
    content: '›'; /* Right arrow symbol */
}
