.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #f8f9fa;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

.hero-background.inactive {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-text h1 .highlight {
    color: #a81d5f;
}

.hero-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
}

.hero-btn-service {
    background: #ff6e18;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-service:hover {
    background: #ff6e18;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(183, 102, 26, 0.3);
    color: #fff;
}

.hero-btn-book {
    background: #a81d5f;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn-book:hover {
    background: #700b54;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(168, 29, 95, 0.3);
    color: #fff;
}

.image-selector {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 20px;
}

.image-thumb {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    overflow: hidden;
    position: relative;
}

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

.image-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.image-thumb.active {
    border-color: #a81d5f;
    /* transform: translateY(-10px); */
    box-shadow: 0 15px 35px rgba(168, 29, 95, 0.4);
}

.image-thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(168, 29, 95, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-thumb.active::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 3rem 0 1rem;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .hero-btn-book,
    .hero-btn-service {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .image-selector {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 2rem;
        padding: 0 1rem 2rem;
        flex-wrap: wrap;
    }

    .image-thumb {
        width: 70px;
        height: 70px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;

    }

}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
    }

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

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }

    .hero-btn-book,
    .hero-btn-service {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }

    .image-selector {
        gap: 10px;
        margin-top: 1.5rem;
        padding: 0 0.5rem 1.5rem;
    }

    .image-thumb {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }

    .image-thumb {
        width: 55px;
        height: 55px;
    }
}

/* ====service  */
.services-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
}

.service-card {
    position: relative;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(168, 29, 95, 0.3) 0%, rgb(168 29 95 / 57%) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(180deg, rgba(168, 29, 95, 0.5) 0%, rgba(168, 29, 95, 0.95) 100%);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    /* margin-bottom: 2rem; */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border: 3px dashed rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 29, 95, 0.8);
    transition: all 0.4s ease;
}

.service-card:hover .service-arrow {
    background: rgba(168, 29, 95, 1);
    transform: translateX(-50%) rotate(360deg);
    border-color: rgba(255, 255, 255, 1);
}

.service-arrow i {
    color: #fff;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-card {
        height: 400px;
    }

    .service-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .service-card {
        height: 380px;
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .service-card {
        height: 350px;
        margin-bottom: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-arrow {
        width: 50px;
        height: 50px;
    }

    .service-arrow i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .service-card {
        height: 320px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-overlay {
        padding: 1.5rem;
    }
}

/* about */
.about-section {
    padding: 5rem 0;
    background: #f5e6e8;
    overflow: hidden;
    position: relative;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image-wrapper {
    flex: 0 0 50%;
    position: relative;
    z-index: 2;
}

.decorative-rectangle {
    position: absolute;
    width: 180px;
    height: 250px;
    background: #a81d5f;
    border-radius: 15px;
    top: -30px;
    left: -30px;
    z-index: 1;
    animation: rotateRectangle 15s linear infinite;
    transform-origin: center;
}

.decorative-flowers {
    position: absolute;
    bottom: -50px;
    left: -80px;
    width: 250px;
    height: 250px;
    z-index: 1;
    animation: rotateFlowers 20s linear infinite;
    transform-origin: center;
}

.about-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); */
}

.about-content {
    flex: 0 0 45%;
}

.about-label {
    color: #a81d5f;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-text {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-btn {
    background: #7a1663;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-btn:hover {
    background: #700b54;
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(168, 29, 95, 0.3);
    color: #fff;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #a81d5f;
    width: 30px;
    border-radius: 6px;
}

@keyframes rotateRectangle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateFlowers {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image-wrapper,
    .about-content {
        flex: 0 0 100%;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .decorative-rectangle {
        width: 150px;
        height: 200px;
    }

    .decorative-flowers {
        width: 200px;
        height: 200px;
        bottom: -40px;
        left: -60px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-main-image {
        max-width: 100%;
    }

    .decorative-rectangle {
        width: 120px;
        height: 160px;
        top: -20px;
        left: -20px;
    }

    .decorative-flowers {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: -40px;
    }

    .about-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .decorative-rectangle {
        width: 100px;
        height: 140px;
        top: -15px;
        left: -15px;
    }

    .decorative-flowers {
        width: 120px;
        height: 120px;
        bottom: -20px;
        left: -30px;
    }
}

/* more service */
.more-services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.more-section-subtitle {
    color: #700b54;
    font-size: 14px;
    font-weight: 600;
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    margin-bottom: 10px;
}

.more-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
}

.more-service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.more-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.more-service-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.more-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.more-service-card:hover .service-image img {
    transform: scale(1.1);
}

.more-service-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #700b54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 2;
}

.more-service-card:hover .service-arrow {
    background: #700b54;
    transform: translate(5px, -5px);
}

.more-service-title {

    padding: 25px;
    text-align: center;
}

.more-service-title h3 {
    font-size: 22px;
    /* font-weight: 700; */
    color: #2c2c2c;
    margin: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    color: #700b54;
    border: 2px solid #700b54;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.view-all-btn:hover {
    background: #700b54;
    color: white;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .more-section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .more-service-image {
        height: 220px;
    }

    .more-services-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .more-section-title {
        font-size: 28px;
    }

    .more-service-title h3 {
        font-size: 18px;
    }

    .more-service-image {
        height: 200px;
    }
}

/* price */
.price-packages-section {
    padding: 80px 0;
    background-color: #f5e6e8;
}

.section-subtitle {
    color: #700b54;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 50px;
}

.price-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item-image {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.price-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-item-content {
    flex: 1;
}

.price-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
}

.price-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #700b54;
}

.price-item-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.testimonials-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonials-container:active {
    cursor: grabbing;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    flex-shrink: 0;
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

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

.testimonial-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.testimonial-name.highlight {
    color: #700b54;
}

.testimonial-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.star {
    color: #ffc107;
    font-size: 20px;
}

.star.empty {
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .price-packages-section,
    .testimonials-section {
        padding: 50px 0;
    }

    .price-card {
        margin-bottom: 20px;
    }

    .price-item {
        flex-direction: column;
        text-align: center;
    }

    .price-item-header {
        flex-direction: column;
        gap: 5px;
    }

    .testimonial-card {
        min-width: calc(100% - 20px);
        width: calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .price-item-title {
        font-size: 18px;
    }

    .testimonial-card {
        min-width: calc(100% - 20px);
        width: calc(100% - 20px);
        padding: 30px 20px;
    }
}

.instagram-section {
    padding: 5rem 0;
    background: #fff;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    margin: 10px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(81, 50, 65, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    color: #fff;
    font-size: 3rem;
}

/* Center Card with Follow Text */
.instagram-center-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 3rem 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 10;
    min-width: 350px;
}

.instagram-icon {
    width: 80px;
    height: 80px;
    border: 3px solid #a81d5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.instagram-icon:hover {
    background: #a81d5f;
    transform: scale(1.1);
}

.instagram-icon i {
    font-size: 2.5rem;
    color: #a81d5f;
    transition: color 0.3s ease;
}

.instagram-icon:hover i {
    color: #fff;
}

.instagram-center-card h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* Grid Layout - Make center items smaller to accommodate card */
.instagram-item:nth-child(5),
.instagram-item:nth-child(6) {
    grid-row: 2;
}

/* Responsive */
@media (max-width: 1200px) {
    .instagram-center-card {
        min-width: 300px;
        padding: 2.5rem 3rem;
    }

    .instagram-center-card h3 {
        font-size: 1.8rem;
    }

    .instagram-icon {
        width: 70px;
        height: 70px;
    }

    .instagram-icon i {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .instagram-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-center-card {
        min-width: 280px;
        padding: 2rem 2.5rem;
    }

    .instagram-center-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 3rem 0;
    }

    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-center-card {
        min-width: 250px;
        padding: 2rem;
        border-radius: 15px;
    }

    .instagram-center-card h3 {
        font-size: 1.4rem;
    }

    .instagram-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .instagram-icon i {
        font-size: 1.8rem;
    }

    .instagram-overlay i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .instagram-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }

    .instagram-center-card {
        min-width: 200px;
        padding: 1.5rem;
    }

    .instagram-center-card h3 {
        font-size: 1.2rem;
    }

    .instagram-icon {
        width: 50px;
        height: 50px;
    }

    .instagram-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 400px) {
    .instagram-center-card {
        min-width: 180px;
        padding: 1.2rem;
    }

    .instagram-center-card h3 {
        font-size: 1.1rem;
    }
}

.newsletter-section {

    background: #710a53;
    padding: 1.5rem;
    text-align: center;
    padding: 2rem;
}

.newsletter-section h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-btn {
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 25px;
    background: #fff;
    color: #710a53;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}