

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #07363c;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes bgPulse {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.08); }
}


header {
    background: rgba(255,255,255,0.15);
    padding: 32px 20px 20px 20px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
    border-radius: 0 0 32px 32px;
    margin-bottom: 24px;
    position: relative;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    animation: logoPop 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes logoPop {
    0% { transform: scale(0.7) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(6deg); opacity: 1; }
    100% { transform: scale(1) rotate(0); }
}


h1 {
    color: #fff;
    margin: 10px 0 8px 0;
    font-size: 2.6rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #1982c4, 0 1px 0 #ffca3a;
    animation: fadeInDown 1.1s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}


main {
    padding: 32px 20px 60px 20px;
}


.welcome-message {
    margin-bottom: 40px;
    background: rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 24px 16px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
    color: #fff;
    font-size: 1.25rem;
    animation: fadeInUp 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}


.business-image {
    max-width: 320px;
    height: auto;
    margin: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    border: 3px solid #fff;
    transition: transform 0.2s;
}
.business-image:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(255,202,58,0.18);
}


footer {
    background: rgba(26, 26, 26, 0.92);
    color: #fff;
    padding: 14px 10px 10px 10px;
    font-size: 1rem;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.13);
    letter-spacing: 0.5px;
}