/* Global Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F0FFF0;
    color: #333;
    scroll-behavior: smooth;
    transition: background-color 0.3s, color 0.3s;
}

h1 {
    margin: 0;
    font-size: 24px; /* Adjust size as needed */
    color: #333; /* Darker text color for contrast */
}

header {
    color: white;
    text-align: center;
    padding: 20px;
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s;
}

.container {
    padding: 20px;
    text-align: center;
}

.section {
    background: #F5FFFA;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.bubble-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial-item {
    background: #e0f7fa;
    border-radius: 50%;
    padding: 20px;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-item blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
    text-align: center;
}

.testimonial-item p {
    margin: 0;
    font-weight: bold;
    text-align: center;
}

.testimonial-item:hover {
    background-color: #b2ebf2;
    transform: scale(1.05);
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-item {
        width: 200px;
        height: 200px;
    }
}