body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    margin-bottom: 40px;
    position: relative;
    overflow: visible;
}

.logo {
    height: 40px;
    margin-right: 12px; /* Match the gap between buttons */
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    background: #fff;
    object-fit: contain;
}

.toolbar-buttons {
    display: flex;
    gap: 12px; /* Space between navigation buttons */
}

.toolbar-buttons button {
    padding: 8px 16px;
    font-size: 1rem;
    border: none;
    background: #4f8cff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.toolbar-buttons button:hover {
    background: #357ae8;
}

/* Add a CSS variable for right margin */
:root {
    --toolbar-phone-margin-right: 50px; /* Adjust this value as needed */
}

.toolbar-phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto; /* Pushes the container to the far right */
    margin-right: var(--toolbar-phone-margin-right);
}

.toolbar-phone {
    font-size: 1.1rem;
    color: #333; /* Default button text color */
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: #fff;
    border-radius: 20px;
    padding: 10px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    border: none;
    outline: none;
    display: inline-block;
    user-select: all;
}

.toolbar-phone:hover {
    background: #ff4f4f;
    color: #fff;
    transition: background 0.4s, color 0.3s;
}

.toolbar-phone:active {
    background: #d32f2f;
    color: #fff;
}

.toolbar-phone.copied {
    background: #43d17a;
    color: #fff;
    transition: background 0.4s, color 0.3s;
}

.copied-bubble {
    display: none;
    background: #43d17a;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.6s;
}

.toolbar::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 100%;
    height: 32px;
    background: radial-gradient(circle at 50% 0, transparent 0, transparent 60%, #fff 100%);
    z-index: 0;
}

.toolbar button {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 0.8s forwards;
    animation-delay: var(--i);
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 12px 32px;
    font-size: 1.1rem;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
    margin: 0 4px;
    position: relative;
    z-index: 1;
}

.toolbar button:hover {
    background: #4f8cff;
    color: #fff;
    box-shadow: 0 4px 16px rgba(79,140,255,0.15);
    transform: translateY(-2px) scale(1.05);
}

.toolbar button:nth-child(2) { --i: 0.1s; }
.toolbar button:nth-child(3) { --i: 0.3s; }
.toolbar button:nth-child(4) { --i: 0.5s; }
.toolbar button:nth-child(5) { --i: 0.7s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toolbar-bg-logo {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 100px);
    background: none;
    pointer-events: none;
    z-index: -1;
}

.toolbar-bg-logo::before {
    content: "";
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 100px);
    background: url('images/logo4(notext).png') no-repeat center center;
    background-size: cover;
    opacity: 0.13;
}

.visit-card {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 140px auto 0 auto;
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(31,38,135,0.08);
    padding: 32px 28px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.visit-card h2 {
    margin-top: 0;
    color: #4f8cff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.visit-card p {
    color: #333;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 18px;
}

.visit-card h3 {
    color: #4f8cff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.visit-card ul {
    list-style: disc inside;
    padding-left: 0;
    margin: 0;
}

.visit-card li {
    color: #333;
    font-size: 1.13rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.partners-card {
    position: relative;
    z-index: 1;
    max-width: 400px;
    margin: 48px auto 0 auto;
    background: rgba(255,255,255,0.92);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(31,38,135,0.08);
    padding: 32px 28px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.partners-card h2 {
    margin-top: 0;
    color: #4f8cff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.partners-bubble {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: rgba(79,140,255,0.09);
    border-radius: 32px;
    padding: 18px 32px;
    box-shadow: 0 2px 12px rgba(31,38,135,0.08);
    min-height: 90px;
    max-width: 320px;
    margin: 0 auto;
    transition: background 0.3s;
}

#partnerIcon {
    height: 60px;
    width: 60px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    background: transparent;
    transition: filter 0.2s;
}

#partnerName {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toolbar-buttons {
        flex-direction: column;
        gap: 8px; /* Space between buttons */
        width: 100%;
    }

    .toolbar-buttons button {
        width: 100%; /* Make buttons take full width on mobile */
        text-align: left;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .toolbar-phone-container {
        margin-top: 8px;
        width: 100%;
        justify-content: flex-start;
    }
}