.header {
    justify-self: center;
    padding-bottom: 30px;
}

.google_image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    color:#4285F4
}

.google-review-cta-container {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
    font-family: "Red Rose", sans-serif;
    align-items: center;
    justify-content: center;
}

.google-review-cta-container p {
    font-size: 1.1rem;
    font-weight: 900;
    color: #111;
    margin-bottom: 25px;
  
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #111111;
    text-decoration: none;
    font-family: "Red Rose", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 28px;
   
    border-radius: 50px;       /* Pill shape matching global button logic */
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

/* Subtle accent background change on hover */
.google-review-btn:hover {
    background-color: #c5c1c1;
    transform: translateY(-2px);
}

.google-review-btn:active {
    transform: translateY(0);
}

/* Size management for the Google G logo inside the button */
.btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}



.reviews-page-layout {
    display: grid;
    grid-template-columns: 1fr 400px 1fr; /* Left, Middle, Right */
    gap: 30px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.image-column {
    position: sticky; /* Keeps it visible as you scroll */
    top: 100px;
}

.review-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 500px; /* Forces space to be visible */
    
}
.review-card {
    background: #ffffff; /* Crisp white */
    padding: 20px;
    border-radius: 16px; /* Slightly rounder corners look more modern */
    box-shadow: 0 10px 20px rgba(0,0,0,0.20); /* Soft, natural shadow */
    border: none;
    margin-bottom: 25px; /* More breathing room between reviews */
    p {
        color: rgb(0% 16.9% 35.7%);
        font-style: italic;
        font-weight: 900;
        font-size: 18px;
        line-height: 1.5;
    }
}
.stars {
   color: rgb(100% 84.3% 0%); 
}
#rotating-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: opacity 0.20s ease-in-out;
}
/* Mobile Responsive: Stack columns vertically */
@media (max-width: 768px) {
    .header {
        justify-self: center;
        padding-bottom: 20px;
    }
    
    .google_image {
        width: 20px;
        height: 20px;
    }

    .reviews-page-layout {
        /* Change from 3 columns to 1 single column */
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 15px;
    }

    .image-column {
        /* On mobile, keep the image at the top or remove 'sticky' */
        position: relative; 
        top: 0;
        aspect-ratio: 4 / 3; /* Or your preferred ratio */
        overflow: hidden;
        order: -1; /* This moves the image to the TOP of the stack */
        margin-bottom: 20px;
    }

    #rotating-image {
        max-height: 300px; /* Limit height so it doesn't take up the whole screen */
        object-fit: cover;
    }
@media (hover: hover) {
    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
}
}