* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8e6f0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 50px;
    width: 100%;
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.review-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a94d98;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    max-width: 500px;
    transition: background-color 0.3s;
}

.review-button:hover {
    background-color: #8e3b81;
}

.google-icon {
    font-weight: bold;
    margin-right: 10px;
    font-size: 22px;
}

/* Mobile-first approach - additional styles for larger screens */
@media (min-width: 768px) {
    .review-button {
        font-size: 20px;
    }
}
