/* V3 - Redesigned Location Tool Styles */
.location-tool-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.location-tool-hero h1 {
    margin-top: 0;
    font-size: 2.5rem;
    color: #1d2327;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.location-tool-hero svg {
    opacity: 0.7;
}

.location-tool-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

.location-tool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
    align-items: flex-start;
}

.location-details {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-details h3 {
    margin-top: 0;
    font-size: 1.5rem;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.location-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.location-details li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.location-details li:last-child {
    border-bottom: none;
}

.location-details li strong {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem; /* Space between icon and text */
    color: #333;
    font-weight: 600;
}

.location-details li strong svg {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.location-details li span {
    font-weight: 500;
    text-align: right;
}

.location-details li.highlight span {
    background-color: #eaf6ff;
    padding: 2px 8px;
    border-radius: 4px;
    color: #005a87;
    font-weight: 700;
}

.location-cta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.location-cta h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.recheck-link {
    display: block;
    margin-top: 1rem;
    font-size: 0.85em;
    color: #555;
}

.location-map {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f8f9fa;
    color: #666;
}

.location-privacy-notice {
    text-align: center;
    font-size: 0.85em;
    color: #666;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 820px) {
    .location-tool-grid {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 350px;
        grid-row: 1; /* Puts map on top on mobile */
    }
}