/* style.css */
body {
    font-family: 'Google Sans', sans-serif;
}

.hero-bg {
    background: radial-gradient(circle at 30% 70%, #4285F4, transparent 40%),
                radial-gradient(circle at 70% 30%, #34A853, transparent 40%),
                radial-gradient(circle at 50% 50%, #FBBC05, transparent 30%),
                radial-gradient(circle at 10% 20%, #EA4335, transparent 30%),
                #1a1a1a;
    background-blend-mode: screen;
    overflow: hidden;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0) 70%, rgba(26,26,26,1) 100%);
}

.card-visual {
    background-size: cover;
    background-position: center;
}

.visual-1 {
    background: linear-gradient(45deg, #4285F4, #34A853);
}

.visual-2 {
     background: linear-gradient(45deg, #FBBC05, #EA4335);
}

.visual-3 {
     background: linear-gradient(45deg, #EA4335, #4285F4);
}

 .visual-4 {
     background: linear-gradient(45deg, #34A853, #FBBC05);
}

.map-bg {
    background-color: #f0f2f5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #4285F4;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
}

.map-dot:hover {
    transform: scale(1.5);
}
